Home Database Mysql Tutorial Liunx环境下MySQL字符集的修改方法(1)

Liunx环境下MySQL字符集的修改方法(1)

Jun 07, 2016 pm 02:52 PM
liunx mysql Revise character set method environment

MySQL字符集的修改在不同的环境下有不同的方法,下面为您介绍的是在Liunx环境下MySQL字符集的修改方法,如果您对此方面感兴趣的话,不妨一看。 Liunx下修改MySQL字符集: 1.查找MySQL的cnf文件的位置 find/-iname'*.cnf'-print /usr/share/mysql/my-innodb-h

  MySQL字符集的修改在不同的环境下有不同的方法,下面为您介绍的是在Liunx环境下MySQL字符集的修改方法,如果您对此方面感兴趣的话,不妨一看。

  Liunx下修改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字符集设置

  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>

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP's big data structure processing skills PHP's big data structure processing skills May 08, 2024 am 10:24 AM

PHP's big data structure processing skills

The secret of hatching mobile dragon eggs is revealed (step by step to teach you how to successfully hatch mobile dragon eggs) The secret of hatching mobile dragon eggs is revealed (step by step to teach you how to successfully hatch mobile dragon eggs) May 04, 2024 pm 06:01 PM

The secret of hatching mobile dragon eggs is revealed (step by step to teach you how to successfully hatch mobile dragon eggs)

How to set font size on mobile phone (easily adjust font size on mobile phone) How to set font size on mobile phone (easily adjust font size on mobile phone) May 07, 2024 pm 03:34 PM

How to set font size on mobile phone (easily adjust font size on mobile phone)

How to optimize MySQL query performance in PHP? How to optimize MySQL query performance in PHP? Jun 03, 2024 pm 08:11 PM

How to optimize MySQL query performance in PHP?

How to use MySQL backup and restore in PHP? How to use MySQL backup and restore in PHP? Jun 03, 2024 pm 12:19 PM

How to use MySQL backup and restore in PHP?

How to choose a mobile phone screen protector to protect your mobile phone screen (several key points and tips for purchasing mobile phone screen protectors) How to choose a mobile phone screen protector to protect your mobile phone screen (several key points and tips for purchasing mobile phone screen protectors) May 07, 2024 pm 05:55 PM

How to choose a mobile phone screen protector to protect your mobile phone screen (several key points and tips for purchasing mobile phone screen protectors)

How to insert data into a MySQL table using PHP? How to insert data into a MySQL table using PHP? Jun 02, 2024 pm 02:26 PM

How to insert data into a MySQL table using PHP?

What are the application scenarios of Java enumeration types in databases? What are the application scenarios of Java enumeration types in databases? May 05, 2024 am 09:06 AM

What are the application scenarios of Java enumeration types in databases?

See all articles