How to solve Chinese garbled characters in MySQL 5.5

Source: Internet
Author: User

1. In the mysql compression directory, there is a bunch of parameter configuration files, such as: my-innodb-heavy-4G.ini, copy this file, change the name, such as: my. ini

2. Open the my. ini file and add the following parameter: [client]: add the default-character-set = utf8 parameter.

 
 
  1. [client] 
  2. #password = [your_password] 
  3. port = 3306 
  4. socket = /tmp/mysql.sock 
  5. default-character-set=utf8 

[Mysqld]: Add the following three parameters:

 
 
  1. [mysqld] 
  2. default-storage-engine=INNODB 
  3. character-set-server=utf8 
  4. collation-server=utf8_general_ci 
  5. # generic configuration options 
  6. port = 3306 
  7. socket = /tmp/mysql.sock  

3. After the configuration is complete, restart the mysql service.

4. After connecting to your database, enter the command: show variables like '% char %'; to view the character set used by your database:

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.