Download imageSelecting a MySQL Image docker search mysql Download MySQL 5.7 image docker pull mysql:5.7 View mysql image docker images Build MySQL master-slavemaster docker run --name mysql-master -p 3307:3306 -e MYSQL_ROOT_PASSWORD=123456 -d mysql:5.7 slave docker run --name mysql-slave -p 3308:3306 -e MYSQL_ROOT_PASSWORD=123456 -d mysql:5.7 The port number mapped to the outside by the Master is 3307, and the port number mapped to the outside by the Slave is 3308 View Container docker ps Connection Test Configuring the MasterEnter the container in two ways: docker exec -it 1b166e12ad6b /bin/bash #1b166e12ad6b is the container id docker exec -it mysql-master /bin/bash #mysql-master is the container name Modify the /etc/mysql/my.cnf configuration file vim /etc/mysql/my.cnf The vim command was not found. Install the vim tool inside docker. Enter the following two commands to install vim apt-get update apt-get install vim After the installation is complete, modify the my.cnf configuration file vim /etc/mysql/my.cnf [mysqld] ## Note that the server-id=100 must be unique within the same LAN ## Enable binary log function, you can take any log (key) log-bin=master-bin binlog-format=ROW // Binary log format, there are three types: row, statement, mixed After configuration, restart MySQL service mysql restart Restarting will cause the Docker container to stop. Use the following command to restart the container docker ps -a docker start mysql-master Create a database synchronization account Enter the mysql-master container docker exec -it 1b166e12ad6b /bin/bash Log in to MySQL and authorize the synchronization account for the slave host mysql -uroot -p123456 CREATE USER 'slave'@'%' IDENTIFIED BY '123456'; GRANT REPLICATION SLAVE, REPLICATION CLIENT ON *.* TO 'slave'@'%'; At this point the master configuration is complete Slave Use the command similar to the master to enter the container docker exec -it mysql-slave /bin/bash Modify the my.cnf configuration file and remember to install the vim command vim /etc/mysql/my.cnf [mysqld] ## Set server_id, note that it must be unique server-id=101 ## Enable binary logging in case the slave is used as the master of other slaves log-bin=mysql-slave-bin ## relay_log configuration relay log relay_log=mysql-relay-bin read_only=1 ## Set to read-only. If this item is not set, it means that the slave can read and write Restart MySQL service mysql restart Start the container docker start mysql-slave Enable Master-Slave replicationFirst, open two terminals and enter the master and slave containers and enter MySQL mysql-master operations mysql -uroot -p123456 show master status; mysql-slave operation Note: Remember to change master_log_file='', master_log_pos= to the results you viewed on the master machine mysql -uroot -p123456 change master to master_host='10.0.3.2', master_user='slave', master_password='123456', master_port=3307, master_log_file='master-bin.000001', master_log_pos=617; start slave; show slave status \G; Test successmysql-master operations create database dockertest; mysql-slave operation The database created on the master appears on the slave, proving success. Article reference link For detailed information, please refer to This is the end of this article about how to deploy MySQL with Docker as a master and a slave. For more information about deploying MySQL with Docker, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Use and optimization of MySQL COUNT function
>>: Web design experience: Make the navigation system thin
Table of contents 1. Introduction 2. Configuratio...
Table of contents Preface 1. The effect is as sho...
Table of contents Backend: Rails API part Front-e...
Table of contents What is a trigger Create a trig...
List style properties There are 2 types of lists ...
Preface Arrays are a special kind of object. Ther...
Table of contents What is FormData? A practical e...
I'll record my first attempt at vue3.0. When ...
Most people have heard of the concept of server-s...
Table of contents in conclusion Practice Analysis...
When the server needs to be started during develo...
Preface When developing static pages, such as Vue...
Table of contents 1. Index 1.1 Concept 1.2 Functi...
Table of contents Filters 01.What is 02. How to d...
Regarding how to create this thin-line table, a s...