(参考)
http://d.hatena.ne.jp/renmen/20101027/1288111712
whereis mysql
リポジトリ内のバージョン確認
# yum info mysql --enablerepo=remi # yum info mysql-server --enablerepo=remi
(# yum info mysql --enablerepo=remi-test) (# yum info mysql-server --enablerepo=remi-test)
# yum --enablerepo=remi,remi-test install mysqlclient15 mysql.x86_64 mysql-server mysql-lib
# mysql_install_db ← 明示的に初期化(やらなくてもOK)
# /etc/rc.d/init.d/mysqld start # chkconfig mysqld on # chkconfig --list mysqld
# vi /etc/my.cnf
[mysqld] : default-character-set=utf8 skip-character-set-client-handshake
(参考)MySQL5.5では、上記の内容だとエラーになる。
http://kawama.jp/archives/2011/02/mysql5-5_character-set-server.html
[mysqld] character-set-server = utf8 skip-character-set-client-handshake
MySQL5.5では、「default-character-set」ではなく、「character-set-server」に変更されている。
# /etc/rc.d/init.d/mysqld restart
# mysqladmin -u root password 'パスワード' ← (展望)
# mysql -u root -p
mysql> select user,host,password from mysql.user; mysql> exit;
(参考)
http://sabakan.org/p/blog/2011/01/17/mysql_secure_installation/
MySQL設定のセキュリティーチェック&修正をしてくれる便利なコマンド「mysql_secure_installation」を使う。
# /usr/bin/mysql_secure_installation
↓
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!In order to log into MySQL to secure it, we'll need the current
password for the root user. If you've just installed MySQL, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.Enter current password for root (enter for none):
↓
OK, successfully used password, moving on...
Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.You already have a root password set, so you can safely answer 'n'.
Change the root password? [Y/n]
↓
「y」
↓
New password:
Re-enter new password:
Password updated successfully!
Reloading privilege tables..... Success!By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.Remove anonymous users? [Y/n]
↓
「y」
↓
... Success!
Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network.Disallow root login remotely? [Y/n]
↓
「y」
↓
... Success!
By default, MySQL comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.Remove test database and access to it? [Y/n]
↓
「y」
↓
- Dropping test database...
... Success! - Removing privileges on test database... ... Success!Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.Reload privilege tables 2011-05-02 (月) 13:08:23 [Y/n]
↓
「y」
↓
... 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!
(参考)
http://kajuhome.com/cgi-bin/patio/patio.cgi?mode=view&no=424
# rpm -qa | grep mysql | sort # whereis mysql
# yum remove mysql # rm -Rf /usr/share/mysql