CentOS,ubuntuと渡り歩きましたが、Vineで安定?しました。
vine変w
serviceやchkconfigコマンドが/sbinに居るのだけどパスが通っていない。
いちいち /sbin/chkconfig とか打ちたくないので.bash_profileにPATH設定。
PATH=$PATH:$HOME:/sbin
export PATH
再ログインして・・・ふぅ〜。
環境を修正すると気分が良い。
php関係をインストール
apt-get install php5 php5-apache2 php5-devel php5-pear php5-mysql
mysql5をインストール・起動・自動起動設定
apt-get install MySQL-server MySQL-client
service mysql start
chkconfig mysql on
apache2を起動・自動起動設定
service apache2 start
chkconfig apache2 on
/var/www/html にinfo.phpを置いて
< ?php phpinfo() ?>
を書いておく。
ブラウザでinfo.phpを読みに行ってphp情報が表示されたらOK,
その中にmysqlの項目があることも確認しよう。
●mysqlの設定
mysql -u root -p rootで入る
mysql> set password for root@localhost=password(‘パスワード’); パスワードを設定する(必須、コピペ禁止)
このコマンドはコピペするとうまくいかないことがありました。面倒なことになるのでちゃんと打ちましょう。
デフォで入っているつかわないユーザーとdbを削除しよう。
セキュリティの問題となるので。
$ mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1 to server version: 5.0.27-standard
Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the buffer.
mysql> use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> delete from user where User=”;
Query OK, 2 rows affected (0.02 sec)
mysql> delete from db where User=”;
Query OK, 2 rows affected (0.00 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
●mysqlにユーザー追加
root使っても良いけどきもちわるくないかい?
ユーザーuhyahya でパスワードohyahya で作成
mysql> grant all privileges on uhyahya.* to hoge identified by ‘ohyahya’;
Query OK, 0 rows affected (0.00 sec)