1. Check the character set of the default installed MySQL mysql> show variables like '%char%'; character_set_database and character_set_server are still latin1 character sets, which means that the tables created by MySQL later are all in latin1 character sets, not utf8, which will cause some trouble. Therefore, it is necessary to modify my.cnf. Be sure to close the MySQL process before modifying my.cnf, otherwise you will encounter the problem that MySQL's sock cannot connect. 2. Close the mysqld background process Control mysqld in the system preferences, avoiding the trouble of finding the installation location of mysqld. Click Stop MySQL Server 3. Modify the mysql configuration file /etc/my.cnf sudo cp /usr/local/mysql/support-files/my-medium.cnf /etc/my.cnf sudo vi /etc/my.cnf [client] section added: default-character-set=utf8 [mysqld] section added: character-set-server=utf8 After the modification is completed, start mysql 4. Check the results: mysql> show variables like '%char%'; Modification completed# You may also be interested in:
|
<<: Summary of Linux operation and maintenance from elementary to advanced knowledge points
>>: JavaScript regular verification password strength implementation method
1. Pull the image docker pull registry.cn-hangzho...
MYSQL version: MySQL Community Server 5.7.17, ins...
In the previous blog, we talked about using Nginx...
Table of contents 1- Error details 2-Single Solut...
[Required] UserInterface PhotoShop/Fireworks Desi...
Table of contents 1. Subquery definition 2. Subqu...
Table of contents 1. How to locate and optimize s...
This article example shares the specific code of ...
1: Install SVN yum install -y subversion 2. Creat...
Table of contents Overview first step Step 2 Why ...
Background of the problem The server monitoring s...
Table of contents Function Introduction function ...
Long story short, today we will talk about using ...
Use wget command to download the entire subdirect...
Table of contents 1. Synchronous AJAX 2. Asynchro...