Liunx下修改MySQL字符集的方法

数据库 MySQL
在Liunx下,应该如何修改MySQL字符集呢?下文对修改MySQL字符集的方法的方法步骤作了详细的介绍,供您参考学习。

下面为您介绍的是在Liunx下修改MySQL字符集的方法,如果您在MySQL字符集方面也遇到过类似的问题,不妨一看。

1.查找MySQL的cnf文件的位置
find / -iname '*.cnf' -print

/usr/share/mysql/my-innodb-heavy-4G.cnf
/usr/share/mysql/my-large.cnf
/usr/share/mysql/my-small.cnf
/usr/share/mysql/my-medium.cnf
/usr/share/mysql/my-huge.cnf
/usr/share/texmf/web2c/texmf.cnf
/usr/share/texmf/web2c/mktex.cnf
/usr/share/texmf/web2c/fmtutil.cnf
/usr/share/texmf/tex/xmltex/xmltexfmtutil.cnf
/usr/share/texmf/tex/jadetex/jadefmtutil.cnf
/usr/share/doc/MySQL-server-community-5.1.22/my-innodb-heavy-4G.cnf
/usr/share/doc/MySQL-server-community-5.1.22/my-large.cnf
/usr/share/doc/MySQL-server-community-5.1.22/my-small.cnf
/usr/share/doc/MySQL-server-community-5.1.22/my-medium.cnf
/usr/share/doc/MySQL-server-community-5.1.22/my-huge.cnf

2. 拷贝 small.cnf、my-medium.cnf、my-huge.cnf、my-innodb-heavy-4G.cnf其中的一个到/etc下,命名为my.cnf
cp /usr/share/mysql/my-medium.cnf /etc/my.cnf

3. 修改my.cnf
vi /etc/my.cnf
在[client]下添加
default-character-set=utf8
在[mysqld]下添加
default-character-set=utf8

4.重新启动MySQL
[root@bogon ~]# /etc/rc.d/init.d/mysql restart
Shutting down MySQL                                         [ 确定 ]
Starting MySQL.                                             [ 确定 ]
[root@bogon ~]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.1.22-rc-community-log MySQL Community Edition (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

5.查看字符集设置
mysql> show variables like 'collation_%';
+----------------------+-----------------+
| Variable_name         | Value            |
+----------------------+-----------------+
| collation_connection | utf8_general_ci |
| collation_database    | utf8_general_ci |
| collation_server      | utf8_general_ci |
+----------------------+-----------------+
3 rows in set (0.02 sec)
mysql> show variables like 'character_set_%';
+--------------------------+----------------------------+
| Variable_name             | Value                       |
+--------------------------+----------------------------+
| character_set_client      | utf8                        |
| character_set_connection | utf8                        |
| character_set_database    | utf8                        |
| character_set_filesystem | binary                      |
| character_set_results     | utf8                        |
| character_set_server      | utf8                        |
| character_set_system      | utf8                        |
| character_sets_dir        | /usr/share/mysql/charsets/ |
+--------------------------+----------------------------+
8 rows in set (0.02 sec)
mysql>
 

以上Liunx下修改MySQL字符集的方法介绍。

 

 

【编辑推荐】

带您了解mysql变量

MySQL用户权限设置方法

MySQL查询超时的问题处理方法

MySQL重复记录的处理方法

教您如何MySql查询时间段

责任编辑:段燃 来源: 互联网
相关推荐

2010-10-09 10:35:46

MySQL字符集

2010-10-09 11:12:32

mysql默认字符集

2011-04-11 10:59:33

Oracle字符集

2010-11-24 10:52:57

Mysql字符集

2010-10-09 11:36:30

MySQL字符集

2010-06-07 16:09:58

MySQL字符集

2020-12-16 06:34:16

MySQL字符集服务器

2021-03-23 18:21:30

MySQL数据库字符集

2010-05-06 14:40:59

Oracle字符集

2011-04-07 15:58:59

MySQL字符集乱码

2010-05-06 18:01:07

Oracle Expr

2010-06-13 16:17:26

MySQL改变字符集

2009-02-24 10:51:30

2011-05-16 13:15:55

MySQL存储字符集

2010-04-13 13:33:37

Oracle字符集

2010-06-02 17:59:19

MySQL字符集

2010-10-09 10:57:22

MySQL默认字符集

2010-11-01 15:44:45

DB2字符集

2010-05-17 10:01:09

MySql字符集

2010-04-30 10:16:22

Oracle字符集
点赞
收藏

51CTO技术栈公众号