mysql5.7.21 utf8 encoding problem and solution in Mac environment

mysql5.7.21 utf8 encoding problem and solution in Mac environment

1. Goal: Change the value of character_set_server of mysql from latin1 to utf8

Temporary: SET character_set_server=utf8, one-time.

Permanent: You need to change the configuration file, see step 2.

2. There is no configuration file in the support-files of mysql 5.7.21.

Create a new my.cnf. You can create a text file and directly change the extension to cnf. It is best to open it with Xcode or subline. The content is as follows:

[mysqld]
character-set-server=utf8
[client]
default-character-set=utf8
[mysql]
default-character-set=utf8

3. Copy my.cnf to /private/etc/

cp /usr/local/mysql/support-files/my.cnf /private/etc/my.cnf

Note: /etc is actually a stand-in for /private/etc and can be copied to either.

4. Restart the mysql server and enter mysql

mysql>show variables like '%char%';

You can find that the encoding values ​​are all changed to utf8.

At this time, rebuild the database and table, and import the data to display Chinese normally.

Summarize

The above is the mysql5.7.21 utf8 encoding problem and solution in Mac environment introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • How to configure Python Anaconda environment in PyCharm on Mac
  • How to configure Anaconda environment in PyCharm on Mac
  • Detailed installation of PHP environment and extensions on Mac
  • How to use VirtualBox to build a local virtual machine environment on Mac
  • How to build a python environment on macOS
  • Detailed steps to quickly build a PHP development environment on Mac
  • Correct installation and configuration of Go environment and VS Code on Mac
  • How to configure gradle environment in Mac and use android studio to package jar package and arr package
  • How to modify the environment variable path in Mac

<<:  How to explain TypeScript generics in a simple way

>>:  Steps for Vue3 to use mitt for component communication

Recommend

MySql 5.6.36 64-bit green version installation graphic tutorial

There are many articles about MySQL installation ...

jQuery custom magnifying glass effect

This article example shares the specific code of ...

mysql5.7.21 utf8 encoding problem and solution in Mac environment

1. Goal: Change the value of character_set_server...

Table of CSS Bugs Caused by hasLayout

IE has had problems for a long time. When everyone...

How to set the style of ordered and unordered list items in CSS

In an unordered list ul>li, the symbol of an u...

Nginx domain name SSL certificate configuration (website http upgraded to https)

Preface HTTP and HTTPS In our daily life, common ...

iFrame is a great way to use it as a popup layer to cover the background

I have been working on a project recently - Budou ...

Vuex modularization and namespaced example demonstration

1. Purpose: Make the code easier to maintain and ...

How to use Docker to limit container resources

Problem Peeping In the server, assuming that the ...

Summary of some common uses of refs in React

Table of contents What are Refs 1. String type Re...

JavaScript Prototype Details

Table of contents 1. Overview 1.1 What is a proto...

Will the index be used in the MySQL query condition?

When an employer asks you whether an index will b...

How to implement one-click deployment of nfs in linux

Server Information Management server: m01 172.16....

How to quickly query 10 million records in Mysql

Table of contents Normal paging query How to opti...

Graphic tutorial for installing MySQL 5.6.35 on Windows 10 64-bit

1. Download MySQL Community Server 5.6.35 Downloa...