Analysis of the Principle and Function of MySQL Database Master-Slave Replication

Analysis of the Principle and Function of MySQL Database Master-Slave Replication

1. Database master-slave classification:

There are two types of master-slave: traditional master-slave/GTID master-slave

2. Origin of MySQL master-slave introduction

In real life, data is extremely important. There are many ways to store databases, but there is a hidden danger in databases.
Hidden dangers:

If you use a database to store data, if the database server crashes, data will be lost. If there is too much data and the number of visits is large, one server cannot guarantee the service quality.

Therefore, the master-slave database was born

3. Master-slave function

Failover, realize read-write separation, provide query service database management system backup (DBSM), avoid affecting business

4. Master-slave replication principle

bin log: binary log, records write operations (add, delete, modify, and query)

Relay log: Relay log

  1. The master database will record all write operations in the binlog log to generate a log dump thread, and pass the binlog log to the I/O thread of the slave database.
  2. The slave library has two threads:
    I/O Threads
    sql thread
  3. The I/O thread of the slave library will request the master library to obtain the binlog log and write it to the relay log.
  4. The sql thread will read the logs in the relay log file and parse the specific operations to achieve the same operations as the master and slave to achieve data consistency

5. Master-slave replication configuration (when data is consistent)

step:

  • Make sure the data in the master database is the same as that in the slave database
  • Create a synchronization account in the master database and authorize it to be used by the slave database
  • Configure the master database (modify the configuration file)
  • Configure the slave database (modify the configuration file)

Environmental requirements:

Two MySQL servers, one master server (write function) and one slave server (read function)

Main database (centos8) IP address: 192.168.136.145 centos8.0/mysql5.7 Same data
Section 6: Data is not the same (maybe the company has data before)
From the database (centos8) ip address: 192.168.136.191 centos7.0/mysql5.7 same data

5.1 Install mysql5.7 on the master and slave servers respectively

You can see the relevant tutorial tutorial (super detailed): https://www.jb51.net/article/221946.htm

#Binary installation: https://blog.csdn.net/qq_47945825/article/details/116848970?spm=1001.2014.3001.5501
#Or install from a network repository: (generally binary installation)
https://blog.csdn.net/qq_47945825/article/details/116245442?spm=1001.2014.3001.5501

5.2 The data of the master database is consistent with that of the slave database

[root@mysql01 ~]# mysql -uroot -e 'show databases;'
+--------------------+
| Database |
+--------------------+
| information_schema |
|mysql |
| performance_schema |
|sys|
+--------------------+
[root@mysql02 ~]# mysql -uroot -e 'show databases;'
+--------------------+
| Database |
+--------------------+
| information_schema |
|mysql |
| performance_schema |
|sys|
+--------------------+

5.3 Create a synchronization account in the master database and authorize it to be used by the slave database

replication: replication slave: from 192.168.136.191: from the database IP address

mysql> create user 'vvv'@'192.168.136.191' identified by 'vvv0917';
Query OK, 0 rows affected (0.00 sec)
mysql> grant replication slave on *.*to 'vvv'@'192.168.136.191';
Query OK, 0 rows affected (0.00 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

5.4 Test the connection on the slave

[root@mysql02 ~]# mysql -uvvv -vvv0917 -h192.168.136.145
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
+--------------------+
1 row in set (0.00 sec)

5.5 Configure the master database

[root@mysql01 ~]# cat /etc/my.cnf 
[mysqld]
basedir = /usr/local/mysql
datadir = /opt/data
socket = /tmp/mysql.sock
port = 3306
pid-file = /opt/data/mysql.pid
user = mysql
skip-name-resolve
log-bin=mysql_bin #Start binlog log server-id=10 #Database server unique identifier, id must be smaller than the slave database #Restart the service (this restart method requires that the mysqld.service file has been configured)
[root@mysql01 ~]# systemctl restart mysqld
Observe the status of the primary database:
mysql> show master status;
+------------------+----------+--------------+------------------+-------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------------+----------+--------------+------------------+-------------------+
| mysql_bin.000004 | 962 | | | |
+------------------+----------+--------------+------------------+---

5.6 Configure the slave database

[root@mysql02 ~]# cat /etc/my.cnf
[mysqld]
basedir = /usr/local/mysql 
datadir = /opt/data 
socket = /tmp/mysql.sock 
port = 3307
user = mysql
pid-file = /opt/data/mysql.pid
skip-name-resolve
#skip-grant-tables 
server-id=20 #Server id, greater than the primary database id
relay-log=mysql_relay_log #Start relay log #log-bin=mysql-bin 
#Restart the service:
[root@mysql02 ~]# systemctl restart mysqld

5.7 Configure and start the master-slave replication function (mysql02 slave database)

[root@slave02 ~]# mysql -uroot -p
mysql> change master to
    -> master_host='192.168.136.145',
    -> master_user='vvv',
    -> master_password = 'vvv0917',
    -> master_log_file='mysql_bin.000004',
    -> master_log_pos=962;
Query OK, 0 rows affected, 2 warnings (0.01 sec)
mysql> start slave; #stop slave to shut down Query OK, 0 rows affected (0.01 sec)
#View the configuration status:
mysql> show slave status\G; 
   Slave_IO_State: Waiting for master to send event
                  Master_Host: 192.168.136.145
                  Master_User: vvv
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: mysql_bin.000004
          Read_Master_Log_Pos: 962
               Relay_Log_File: mysql_relay_log.000002
                Relay_Log_Pos: 320
        Relay_Master_Log_File: mysql_bin.000004
             Slave_IO_Running: Yes
            Slave_SQL_Running: Yes
            #Both must be yes here, which means the configuration is successful, otherwise it fails

5.8 Testing:

Main library:

mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
|mysql |
| performance_schema |
|sys|
+--------------------+

From the library:

mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
|mysql |
| performance_schema |
|sys|
+--------------------+


The main library creates the database clq and adds data:

mysql> create database clq;
Query OK, 1 row affected (0.00 sec)
mysql> create table clq01(id int(11)not null primary key auto_increment,name varchar(100)not null,age tinyint(4)); 
mysql> insert clq01(name,age) values('A',20),('B',21),('C',22);
Query OK, 3 rows affected (0.00 sec)

View from the gallery:

mysql> select * from clq01;
+----+------+------+s
| id | name | age |
+----+------+------s+
| 1 | A | 20 |
| 2 | B | 21 |
| 3 | C | 22 |
+----+------+------+
                              #Master-slave replication completed!


6. Master-slave configuration (when data is inconsistent)

6.1 Generally, a fully-backed master database needs to open another terminal to add a read lock to the database (read only, not write)

Avoid differences caused by others writing data

flush tables with read lock:
quit: Exit to unlock (unlock after backup is completed)

6.2 Ensure that the data in the master database is the same as that in the slave database

#First prepare the main database [root@mysql01 ~]# mysqldump -uroot -A > all-databases.sql 
#Copy data to the slave database [root@mysql01 ~]# ls /clq
all-databases.sql
[root@mysql01 ~]# scp /clq/all-databases.sql [email protected]:/clq/
The authenticity of host '192.168.136.193 (192.168.136.193)' can't be established.
ECDSA key fingerprint is SHA256:XIAQEoJ+M0vOHmCwQvhUdw12u5s2nvkN0A4TMKLaFiY.
Are you sure you want to continue connecting (yes/no/[fingerprint])yes
[email protected]'s password: 
all-databases.sql 100% 853KB 115.4MB/s 00:00  
[root@mysql02 clq]# ll
Total usage 896 #View from the database -rw-r--r--. 1 root root 873266 May 17 19:36 all-databases.sql

6.3 Check which libraries are in the master library on the slave library to ensure consistency

[root@mysql02 clq]# mysql -uroot -pHuawei0917@ < all-databases.sql 
mysql: [Warning] Using a password on the command line interface can be insecure.
[root@mysql02 clq]# mysql -uroot -pHuawei0917@ -e 'show databases;'
mysql: [Warning] Using a password on the command line interface can be insecure.
+--------------------+
| Database |
+--------------------+
| information_schema |
| clq |
|mysql |
| performance_schema |
|sys|
+--------------------+
Main library:
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| clq |
|mysql |
| performance_schema |
|sys|
+--------------------+


6.4 Make sure the configuration files of the two libraries have been configured with the corresponding files

[root@mysql01 ~]# cat /etc/my.cnf 
[mysqld]
basedir = /usr/local/mysql
datadir = /opt/data
socket = /tmp/mysql.sock
port = 3306
pid-file = /opt/data/mysql.pid
user = mysql
skip-name-resolve
log-bin=mysql_bin #log file server-id=10 #unique identifier of service id
[root@mysql02 ~]# cat /etc/my.cnf
[mysqld]
basedir = /usr/local/mysql 
datadir = /opt/data 
socket = /tmp/mysql.sock 
port = 3307
user = mysql
pid-file = /opt/data/mysql.pid
skip-name-resolve
#skip-grant-tables 
server-id=20 #Uniquely identifies the service id (larger than the main database)
relay-log=mysql_relay_log #Relay log#log-bin=mysql-bin 


The steps after this are exactly the same as after 5.5!

summary:

When the master database modifies the data, the slave database data will change accordingly!
On the contrary, if the data in the slave database is modified, the data in the master database will not change.

View the command process running in the database

mysql> show processlist;
+----+------+-----------------------+------+-------------+------+---------------------------------------------------------------+------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------------+------+-------------+------+---------------------------------------------------------------+------------------+
| 5 | repl | 192.168.136.219:39788 | NULL | Binlog Dump | 1575 | Master has sent all binlog to slave; waiting for more updates | NULL |
| 7 | root | localhost | NULL | Query | 0 | starting | show processlist |
+----+------+-----------------------+------+-------------+------+---------------------------------------------------------------+------------------+
2 rows in set (0.00 sec)

The above is the detailed analysis of the principle and function of MySQL database master-slave replication. For more information about MySQL database master-slave replication, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Implementation steps of mysql master-slave replication
  • MySQL master-slave synchronization principle and application
  • Detailed explanation of mysql5.6 master-slave setup and asynchronous issues

<<:  Detailed explanation of the English names corresponding to the font-family of Chinese fonts in CSS styles

>>:  Vue close browser logout implementation example

Recommend

Why does using limit in MySQL affect performance?

First, let me explain the version of MySQL: mysql...

In-depth understanding of uid and gid in docker containers

By default, processes in the container run with r...

Vue resets data to its initial state

In some cases, the data in data needs to be reuse...

Details on overriding prototype methods in JavaScript instance objects

Table of contents In JavaScript , we can usually ...

jQuery implements accordion effects

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

Some suggestions for improving Nginx performance

If your web application runs on only one machine,...

Embed codes for several older players

The players we see on the web pages are nothing m...

Vue implements online preview of PDF files (using pdf.js/iframe/embed)

Preface I am currently working on a high-quality ...

HTML tag marquee realizes various scrolling effects (without JS control)

The automatic scrolling effect of the page can be...

VMware15 installation of Deepin detailed tutorial (picture and text)

Preface When using the Deepin user interface, it ...

Awk command line or script that helps you sort text files (recommended)

Awk is a powerful tool that can perform some task...

How to split data in MySQL table and database

Table of contents 1. Vertical (longitudinal) slic...

Use simple jQuery + CSS to create a custom a tag title tooltip

Introduction Use simple jQuery+CSS to create a cus...