Configure the Mysql encoding method in Ubuntu

Source: Internet
Author: User

Find the configuration file

I installed it through sudo apt-get install mysql. Mysql configuration file in/etc/mysql/my. cnf
If the file cannot be found, run sudo find/-iname '*. cnf' to find all cnf files.

Modify configuration file

Add under [mysqld]
Default-character-set = utf8
Add under [client]
Default-character-set = utf8

Restart mysql

Sudo service mysql restart
Log on to mysql and check whether the operation is successful.
# Mysql-u root

Mysql> show variables like 'char % ';
+ -------------------------- + ---------------------------- +
| 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.00 sec)


Restart mysql

Use unused commands to restart your mysql instance based on the method in which you install mysql. If you have configured the mysqld auto-start mode, you can execute
#/Etc/rc. d/init. d/mysql restart
To restart.
Or you can configure mysql as a system service.
# Service mysql restert

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.