*インストール後の設定 [#a471760c]
#contents

**自動起動設定 [#v9d3c8d1]
MySQLのソースパッケージには起動・停止制御用のスクリプトが同梱されている。~
下記手順にて所定位置にスクリプトをコピーすることで自動起動が可能である。(要root権限)~

 cd [MySQLソースパス]
 cd ./support-files
 chmod 755 mysql.server
 cp ./mysql.server /etc/init.d/mysql

MySQLをOSのサービスとして登録する

 chkconfig mysql on

サービスの登録状況を確認する

 chkconfig --list | grep mysql
 mysql           0:off   1:off   2:on    3:on    4:on    5:on    6:off


**rootアカウントの設定 [#w8648bfc]
MySQLの管理者ユーザの設定をする

 mysqladmin -u root password '[PASSWORD]'
 mysqladmin -u root -h [HOST NAME] password '[PASSWORD]'

接続を試験する

 mysql -u root -p
 Enter password: 



 Welcome to the MySQL monitor.  Commands end with ; or \g.
 Your MySQL connection id is 3 to server version: 5.0.26
 
 Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
 
 mysql> 


**環境変数 PATH設定 [#o236b2d7]
MySQLの専用システムアカウントにMySQL実行ファイルのパスを設定する。~
(専用システムアカウントは"mysql"、インストール先は"/usr/local/mysql"とする)

 su - mysql
 vi .bash_profile

下記を追記する。

 export PATH=$PATH:/usr/local/mysql/bin
 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/mysql/lib/mysql


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS