MySQL設定ファイル編集
[root@fedora ~]# vi /etc/my.cnf
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
# Default to using old password format for compatibility with mysql 3.x
# clients (those using the mysqlclient10 compatibility package).
old_passwords=1
#追加(MySQLサーバーの文字コードをUTF-8にする
default-character-set = utf8
#追加(MySQLクライアントの文字コードをUTF-8にする)
[mysql]
default-character-set = utf8