mysqlをインストする。
元ネタはココ。
(1)パッケージをインスト。
# yum -y install mysql-server
(2)WinSCPで /etc/my.cnf を修正
[mysqld]
default-character-set = utf8
[mysql]
default-character-set = utf8
(3)起動
# /etc/rc.d/init.d/mysqld start
(4)自動起動設定。
# chkconfig mysqld on
# chkconfig –list mysqld
mysqld 0:off 1:off 2:on 3:on 4:on 5:on 6:off
(5)セキュリティを強化。
# mysql_secure_installation
Enter current password for root (enter for none): 【Enter】
OK, successfully used password, moving on…
Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.
Set root password? [Y/n] 【Enter】
New password: mysqlでのrootパスワード
Re-enter new password: mysqlでのrootパスワード
Password updated successfully!
Reloading privilege tables..
… Success!
・・・
Remove anonymous users? [Y/n] 【Enter】
・・・
Disallow root login remotely? [Y/n] 【Enter】
・・・
Remove test database and access to it? [Y/n] 【Enter】
・・・
Reload privilege tables now? [Y/n] 【Enter】
… Success!
Cleaning up…
All done! If you’ve completed all of the above steps, your MySQL
installation should now be secure.
Thanks for using MySQL!