MySQLに関するいろいろな設定方法をメモします。
MySQLインストール後の初回起動時に、下記のメッセージが表示されます。
MySQL Initial Boot Message
MySQL データベースを初期化中: Installing MySQL system tables...
OK
Filling help tables...
OK
To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system
PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:
/usr/bin/mysqladmin -u root password 'new-password'
/usr/bin/mysqladmin -u root -h eagle6.eagle.com password 'new-password'
Alternatively you can run:
/usr/bin/mysql_secure_installation
which will also give you the option of removing the test
databases and anonymous user created by default. This is
strongly recommended for production servers.
See the manual for more instructions.
You can start the MySQL daemon with:
cd /usr ; /usr/bin/mysqld_safe &
You can test the MySQL daemon with mysql-test-run.pl
cd /usr/mysql-test ; perl mysql-test-run.pl
Please report any problems with the /usr/bin/mysqlbug script!
そのメッセージに記載されている内容にしたがって、下記のように設定をします。
/usr/bin/mysqladmin -u root password 'new-password'
rootアカウントを含めた、MySQLに登録されたアカウントのパスワードを変更する手順です。
mysqladmin password hogehoge -u root -p
※ただし、初回設定時のように、' (シングルクォーテーション)を含めると、実際のパスワードにも反映されるので、
注意してください。
MySQLのサイトに、FAQとして載っています。