ubuntu 上配置mysql 为utf8

百度,或者google可以找到很多, 这是我的配置

[client]
default-character-set=utf8
[mysql]
default-character-set=utf8
[mysqld]
[mysqld]
init_connect='SET collation_connection = utf8_unicode_ci'
init_connect='SET NAMES utf8'
character-set-server=utf8
collation-server=utf8_unicode_ci
skip-character-set-client-handshake
位置在"/etc/mysql/my.cnf"

然后重启一下, sudo service mysql restart

很多人说没有效果,可能原因是, 配置文件的权限太大了,用mysql -V 查看一下

mysql: [Warning] World-writable config file '/etc/mysql/my.cnf' is ignored.

需要更改为 chmod 644 /etc/mysql/my.cnf

如果没有写入权限, 增加写入权限 chmod -R a+w /etc/mysql/my.cnf (记得改回644)


查看是否成功  show variables like '%character%';



你可能感兴趣的:(linux)