1. Pull the mysql image Website: https://hub.docker.com/ Copy the command to download: 2. Check whether the download is completedocker images 3. MySQL mounts local directory & solves Chinese garbled characters Because there is no Create folders separately /tmp/mysql/data [mysqld] skip-name-resolve character_set_server=utf8 datadir=/var/lib/mysql server-id=1000 [mysql] default-character-set = utf8 [mysql.server] default-character-set = utf8 [mysqld_safe] default-character-set = utf8 [client] default-character-set = utf8 4. Create a container and view itCreate command: docker run \ --name mysql \ -p 3306:3306 \ --privileged=true -v /tmp/mysql/data:/var/lib/mysql \ -v /tmp/mysql/conf/hmy.cnf:/etc/mysql/conf.d/hmy.cnf \ -e MYSQL_ROOT_PASSWORD=123456 \ -d \ mysql:latest Check whether the creation is successful: docker ps -a If you accidentally create an error, you can delete Enter the mysql container: Use Navicat to test whether it is started Test whether Chinese characters are garbled This is the end of this article about the detailed tutorial on how to install MySQL on Docker and solve the problem of Chinese garbled characters that I have tested myself. For more related content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
>>: MySQL series multi-table join query 92 and 99 syntax examples detailed tutorial
What is MIME TYPE? 1. First, we need to understand...
Recently, when working on mobile pages, inline-bl...
Table of contents 1. First install echarts in the...
When you use the docker command for the first tim...
Table of contents Stabilization Throttling Summar...
Today we analyzed another typical problem about d...
background There is a requirement in the project ...
Preface When my team was developing the tax syste...
This article shares the specific code for JavaScr...
Preface Although the holiday is over, it shows up...
Nginx uses a fixed number of multi-process models...
It is essentially a common js object used to desc...
How to set up a MySQL short link 1. Check the mys...
Table of contents 1. IDEA downloads the docker pl...
1. Problem The problems encountered when initiali...