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
This article shares the specific code for WeChat ...
Table of contents 1. Troubleshooting and locating...
In the latest version of Ubuntu, users no longer ...
1 Installation Download the corresponding unzippe...
background During the project development process...
Table of contents Preface 1. Startup management b...
Problem: The partition where MySQL stores data fi...
I like to pay attention to some news on weekdays a...
** Install mysql-8.0.20 under Linux ** Environmen...
<br />For an article on a content page, if t...
CJK is the abbreviation of CJK Unified Ideographs...
Today, when I was installing CentOS6.2, I couldn&...
Introduction During the work process, slow querie...
In MySQL 8.0.18, a new Hash Join function was add...
Table of contents for loop While Loop do-while lo...