Linux_CentOS-服务器搭建 <六>
修改MySQL编码:
二话不说先登录:
mysql -u root -p
查看下神奇的mysql系统变量及其值:
show variables like '%character%';
//记住分号哦,爱打字的人
步骤开始了:
1.找到mysql配置文件,拷贝到etc的my.cnf 并且覆盖哦。
/usr/share/doc/mysql-server-5.1.69/my-large.cnf 复制到 /etc/my.cnf
shell如下:
cp /usr/share/doc/mysql-server-5.1.69/my-large.cnf /etc/my.cnf
2.打开 my.cnf 并设置编码
//在[client]下增加 default-character-set=utf8 //在[mysqld]下增加 default-character-set=utf8 init_connect='set names utf8'
3.重启mysql
service mysqld restart
再进行1的操作看看吧。
然后注意一小点的事情是:创建表格的时候:
create database test default character set utf8;
点个小 赞 吧 |