おっさんエンジニアの忘備録

Linux系の各種作業を自分用の忘備録として残しています

2016-04-14から1日間の記事一覧

MySQLデータベース・テーブル作成

(1)データベース作成 mysql> CREATE DATABASE test_db;Query OK, 1 row affected (0.00 sec)mysql> show databases;+--------------------+| Database |+--------------------+| information_schema || mysql || performance_schema || sys || test_db |+---…

負荷テスト関連サイト

◆abコマンドhttp://www.atmarkit.co.jp/ait/articles/0206/29/news001_2.html ◆stressコマンドhttp://d.hatena.ne.jp/jitsu102/20111120/1321790533 ◆Linux Test Projecthttp://blog.livedoor.jp/hakin/archives/51038015.html ◆ApacheJmeterhttp://jmeter.a…

RHEL6にsambaをインストール

必要最小限のみの設定です。 (1)yumでsambaインストール # yum install samba (2)公開用のディレクトリ作成 # mkdir /home/share # chmod 777 /home/share (3)smb.confの修正 ・ ・ security = user map to guest = Bad User ⇒セキュリティの設定(guestアク…