MySQL master-slave replication principle and practice detailed explanation

MySQL master-slave replication principle and practice detailed explanation

This article uses examples to illustrate the principles and practices of MySQL master-slave replication. Share with you for your reference, the details are as follows:

Introduction

MySQL master-slave replication is also called Replication and AB replication. At least two MySQL servers are required (they can be on the same machine or on different machines).

For example, server A is the master server and server B is the slave server. Data is updated on server A and synchronized to server B through binlog records. The synchronized binlog data is then re-executed to achieve data consistency on the two servers.

The master-slave replication scheme of MySQL database is similar to the file-level replication using commands such as scp/rsync, which is the remote transmission of data.

However, MySQL's master-slave replication is a built-in function that does not require the use of third-party tools. Moreover, MySQL's master-slave replication does not directly copy files on the database disk, but copies the logical binlog log to the local server to be synchronized, and then the local thread reads the SQL statements in the log and reapplies them to the MySQL database.

effect

1. Real-time disaster recovery and failover;

2. Read-write separation, providing query services and achieving load balancing;

3. Hot backup of data to avoid affecting business.

principle

1. The master server MySQL service records all write operations in the binlog log, generates a log dump thread, and passes the binlog log to the I/O thread of the slave server MySQL service.

2. Generate two threads from the server MySQL service, one is the I/O thread and the other is the SQL thread.

3. The slave I/O thread requests the master's binlog log and writes the files in the binlog log to the relaylog.

4. The SQL thread of the slave database will read the contents of the relaylog and parse it into specific operations to achieve consistency in the operations of the master and the slave, and ultimately achieve data consistency between the two databases.

Note:
- Master-slave replication is asynchronous and logical SQL statement-level replication;
- During replication, the master has one I/O thread, and the slave has two threads, the I/O and SQL threads;
- The necessary condition for implementing master-slave replication is that the master database must enable the binlog function;
- The server-id of all MySQL nodes used as replication cannot be the same;
- The binlog file only records SQL statements that change the data content, and does not record any query statements.

form

One master and one slave

Master-Master Replication

One master, many slaves

Multiple masters and one slave (supported after 5.7)

Cascade Replication

practice

need

Implement a master-slave replication mode, two MySQL instances on the same host

environment

Mac: 10.15.1
Docker: 2.0.0.3 // Using Docker to install MySQL is mainly for easy management and maintenance, independent IP, and startup in seconds MySQL-master: 5.7.29 // Main server MySQL-master IP: 172.17.0.3
MySQL-slave: 5.7.29 // MySQL-slave IP from server: 172.17.0.4

step

Step 1: Prepare two MySQL servers
mysql-master (master server):
1. Create the directory structure:
master/conf, master/data, master/logs
2. Start the running instance container:
docker run --name mysql-master
> -p 3310:3306
> -v ~/docker/master/conf:/etc/mysql/conf.d
> -v ~/docker/master/data:/var/lib/mysql
> -v ~/docker/master/logs:/var/log/mysql
> -e MYSQL_ROOT_PASSWORD=123456
> -d mysql:5.7
3. Enter the container docker exec -it mysql-master bash
4. Log in to MySQL
mysql -uroot -p
mysql-slave (slave server):
1. Create the directory structure:
slave/conf, slave/data, slave/logs
2. Start the running instance container:
docker run --name mysql-slave
> -p 3310:3306
> -v ~/docker/slave/conf:/etc/mysql/conf.d
> -v ~/docker/slave/data:/var/lib/mysql
> -v ~/docker/slave/logs:/var/log/mysql
> -e MYSQL_ROOT_PASSWORD=123456
> -d mysql:5.7
3. Enter the container docker exec -it mysql-slave bash
4. Log in to MySQL
mysql -uroot -p
Step 2: Modify the configuration file (my.cnf)
Primary Server:

[mysqld]
port = 3306
server-id = 1
#Database to be synchronized binlog-do-db = school
#To generate binary log files, the master server must enable log-bin = mysql-bin

Restart MySQL: docker restart mysql-master
From the server:

[mysqld]
port = 3306
server-id = 2
#Database to be synchronized binlog-do-db = school
#To generate binary log files (optional from the server)
log-bin = mysql-bin

Restart MySQL: docker restart mysql-slave
Step 3: Create a master server replication user and related permissions
create user 'slave'@'%' identified by '123456'; //Create user grant replication slave,replication client on *.* to 'slave'@'%'; //Set user privileges flush privileges; //Refresh privileges show grants for 'slave'@'%'; //View user privileges
Step 4: Data backup and synchronization
1. Log in to the master and execute the lock table operation mysql -uroot -p
FLUSH TABLES WITH READ LOCK;
2. Dump the data of the db that needs to be synchronized in the master mysqldump -uroot -p school > school.dump
3. Import data into slave
mysql -uroot -h172.17.0.4 -p school < school.dump
4. Unlock the master
UNLOCK TABLES;
Step 5: Master server replication status
1. Create a new data table and add data create table user( id int(10) auto_increment, name varchar(30), primary key (id) )charset=utf8mb4;
insert into user(name) values(222);
2. Master server binlog record status mysql> show master status;
+------------------+----------+--------------+------------------+-------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------------+----------+--------------+------------------+-------------------+
| mysql-bin.000001 | 769 | school | | |
+------------------+----------+--------------+------------------+-------------------+

Step 6: Start copying from the server
1. Connect to the master server and set the starting node for replication mysql> change master to master_host='172.17.0.3',
-> master_port=3306,
-> master_user='slave',
-> master_password='123456',
-> master_log_file='mysql-bin.000001',
-> master_log_pos=769;
2. Start replication start slave;
3. Check the replication status mysql> show slave status \G
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 172.17.0.3
Master_User: slave
Master_Port: 3306
Connect_Retry: 60
Master_Log_File:mysql-bin.000001
Read_Master_Log_Pos: 961
Relay_Log_File: 87dc5224655d-relay-bin.000003
Relay_Log_Pos: 320
Relay_Master_Log_File: mysql-bin.000001
Slave_IO_Running: Yes //Indicates that the I/O thread reads successfully Slave_SQL_Running: Yes //Indicates that the SQL thread executes successfully Replicate_Do_DB:
Replicate_Ignore_DB:
Replicate_Do_Table:
Replicate_Ignore_Table:
Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table:
Last_Errno: 0
Last_Error:
Skip_Counter: 0
Exec_Master_Log_Pos: 961
Relay_Log_Space: 892
Until_Condition: None
Until_Log_File:
Until_Log_Pos: 0
Master_SSL_Allowed: No
Master_SSL_CA_File:
Master_SSL_CA_Path:
Master_SSL_Cert:
Master_SSL_Cipher:
Master_SSL_Key:
Seconds_Behind_Master: 0
Master_SSL_Verify_Server_Cert: No
Last_IO_Errno: 0
Last_IO_Error:
Last_SQL_Errno: 0
Last_SQL_Error:
Replicate_Ignore_Server_Ids:
Master_Server_Id: 1
Master_UUID: 45540733-4e0c-11ea-b0ac-0242ac110003
Master_Info_File: /var/lib/mysql/master.info
SQL_Delay: 0
SQL_Remaining_Delay: NULL
Slave_SQL_Running_State: Slave has read all relay logs; waiting for more updates
Master_Retry_Count: 86400
Master_Bind:
Last_IO_Error_Timestamp:
Last_SQL_Error_Timestamp:
Master_SSL_Crl:
Master_SSL_Crlpath:
Retrieved_Gtid_Set:
Executed_Gtid_Set:
Auto_Position: 0
Replicate_Rewrite_DB:
Channel_Name:
Master_TLS_Version:
4. View the data table datamysql> show create table user\G
*************************** 1. row ***************************
Table: user
Create Table: CREATE TABLE `user` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`name` varchar(30) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4

mysql> select * from user;
+----+------+
| id | name |
+----+------+
| 1 | 222 |
+----+------+
Copy control related commands:
stop salve //Stop slave connection reset slave //Reset slave connection start slave //Open slave connection stop master //Stop master connection reset master //Reset master connection start master //Open master connection
Step 7: Check the process of master and slave servers
mysql-master:

mysql-slave:

Readers who are interested in more MySQL-related content can check out the following topics on this site: "MySQL query skills", "MySQL common functions summary", "MySQL log operation skills", "MySQL transaction operation skills summary", "MySQL stored procedure skills" and "MySQL database lock related skills summary"

I hope this article will be helpful to everyone's MySQL database design.

You may also be interested in:
  • The implementation principle of Mysql master-slave synchronization
  • Interpretation of MySQL master-slave configuration and its principle analysis (Master-Slave)
  • Detailed explanation of the role and working principle of MySQL master-slave replication
  • MySQL master-slave principle and configuration details
  • Introduction to MySQL master-slave synchronization principle
  • Analysis of MySQL example DTID master-slave principle

<<:  vue3.0+echarts realizes three-dimensional column chart

>>:  Summary of examples of common methods of JavaScript arrays

Recommend

Detailed tutorial on installing Python 3.6.6 from scratch on CentOS 7.5

ps: The environment is as the title Install possi...

MySQL 5.7.27 installation and configuration method graphic tutorial

The installation tutorial of MySQL 5.7.27 is reco...

How to query whether the mysql table is locked

Specific method: (Recommended tutorial: MySQL dat...

How to use libudev in Linux to get USB device VID and PID

In this article, we will use the libudev library ...

How to understand JS function anti-shake and function throttling

Table of contents Overview 1. Function debounce 2...

Implementation of code optimization for Vue2.x project performance optimization

Table of contents 1 Use of v-if and v-show 2. Dif...

HTML Basics_General Tags, Common Tags and Tables

Part 1 HTML <html> -- start tag <head>...

jQuery implements percentage scoring progress bar

This article shares the specific code of jquery t...

Vue Element-ui table realizes tree structure table

This article shares the specific code of Element-...

JavaScript to achieve dynamic color change of table

This article shares the specific code for JavaScr...

Analysis of Linux configuration to achieve key-free login process

1.ssh command In Linux, you can log in to another...

Detailed steps for developing WeChat mini-programs using Typescript

We don't need to elaborate too much on the ad...

Detailed installation and use of RocketMQ in Docker

To search for RocketMQ images, you can search on ...