Ubuntu modified MySQL code for UTF8

Source: Internet
Author: User
Tags mysql code

Ubuntu uses apt-get after installing MySQL, the server's default encoding is Latin1, the following changes the server's code to UTF8.

View MySQL and encoded information

Look at the MySQL message:

Mysql> select version (); +-------------------------+| Version () |+-------------------------+| 5.5.41-0ubuntu0.14.04.1 |+-------------------------+

Coding related information:

mysql> show variables like  ' character% '; +--------------------------+------------------- ---------+| variable_name            |  value                       |+--------------------------+----------------------------+| character_set_ client     | utf8                        | |  character_set_connection | utf8                        | |  character_set_database   | latin1                      | |  character_set_filesystem | binary                      | |  character_set_results    | utf8                        | |  character_set_server     | latin1                      | |  character_set_system     | utf8                        | |  character_sets_dir       | /usr/share/mysql/charsets/ |+--- -----------------------+----------------------------+

You can see that both the Character_set_database and character_set_server codes are latin1.

Modify the MySQL encoding

Open the MySQL configuration file /etc/mysql/my.cnf

Vim/etc/mysql/my.cnf

append to [MySQL]

Default-character-set=utf8

After saving, restart MySQL.

/etc/init.d/mysql restart

The code is correct.

mysql> show variables like  ' character% '; +--------------------------+------------------- ---------+| 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/ |+--- -----------------------+----------------------------+

Complete.

Ubuntu modified MySQL code for UTF8

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.