关于linux中修改数据库的编码格式默认为utf-8

打开 /etc/my.cnf
编辑 [mysql]客户端的编码格式
    default-character-set=utf8

[mysqld]服务器的编码格式
default-character-set=utf8
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
user=mysql
# Default to using old password format for compatibility with mysql 3.x
# clients (those using the mysqlclient10 compatibility package).
old_passwords=1

# Disabling symbolic-links is recommended to prevent assorted security risks;
# to do so, uncomment this line:
# symbolic-links=0

[mysqld_safe]
log-error=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid

猜你喜欢

转载自caichenglong.iteye.com/blog/2249041