MySQL 5.7.18 master-slave replication setup (one master and one slave) tutorial detailed explanation

MySQL 5.7.18 master-slave replication setup (one master and one slave) tutorial detailed explanation

1. Replication Principle

The master server writes updates to binary log files and maintains an index of the files to track log rotations. These logs record updates sent to slave servers. When a slave connects to a master, it notifies the master of the location of the last successful update read by the slave in the log. The slave receives any updates that occur from that point on, and then blocks and waits for notification of new updates from the master.

MySQL uses three threads to perform replication functions (one on the master and two on the slaves. When START SLAVE is issued, the slave creates an I/O thread to connect to the master and have it send statements recorded in its binary log. The master creates a thread to send the contents of the binary log to the slave.

This thread is the Binlog Dump thread on the primary server. The slave server I/O thread reads the content sent by the master server Binlog Dump thread and copies the data to a local file in the slave server data directory, namely the relay log. The third thread is the SQL thread, which is created by the slave server to read the relay log and execute the updates contained in the log.

2. Server Preparation

Operating system version: Red Hat Enterprise Linux Server release 6.7 (Santiago)

Master ip: 172.16.115.245 Host name: mysql2 server_id: 245

Slave ip: 172.16.115.247 Host name: mysql3 server_id: 247

MySQL 5.7.18 has been installed on both the master and slave servers

3. Master-slave replication implementation details

1. Set up a connection account for the server on the master server and grant REPLICATION SLAVE permissions.

GRANT REPLICATION SLAVE ON *.* TO 'repl'@'%' IDENTIFIED BY 'repl@20170509';

2. Modify the master configuration file my.cnf

server-id = 245
log_bin = /data/mysqllog/3306/bin_log/binlog

These two values ​​must be set. After setting them, restart MySQL.

3. Back up the complete data on the master

mysqldump -uroot -p'password' --master-data=2 --single-transaction -R --triggers -A > /backup/all.sql

illustrate:

--master-data=2 means recording the master's Binlog position and Position at the time of backup
--single-transaction means getting a consistent snapshot
-R means backup stored procedures and functions
--triggres means backup trigger
-A means backing up all libraries

4. Check the binlog name and location when backing up the main library

SHOW MASTER STATUS;
mysql> SHOW MASTER STATUS;
+---------------+----------+-------------+------------------+-------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+---------------+----------+-------------+------------------+-------------------+
| binlog.000004 | 79394496 | | | |
+---------------+----------+-------------+------------------+-------------------+

Or go to the database file you just backed up and look at it: vi all.sql

5. Modify the slave library configuration file my.cnf

server-id = 247 (unique, cannot be the same as the main database, usually set to the last 3 digits of the server IP)
log_bin = /data/mysql/logdir/3306/bin_log/binlog
innodb_file_per_table = ON
skip_name_resolve = ON
relay_log = /data/mysql/logdir/3306/relay_log/relay.log
binlog-format = row
log-slave-updates = true

read_only=ON (read-only mode)

After setting, restart MySQL.

6. Restore the master backup on the slave server

mysql -u root -p 'password' < all.sql

7. Stop the slave library, configure the master-slave parameters, and open the slave library.

mysql> stop slave; #Stop slavemysql>CHANGE MASTER TO MASTER_HOST='172.16.115.245',MASTER_USER='repl', MASTER_PASSWORD='repl@20170509',MASTER_LOG_FILE='binlog.000004',MASTER_LOG_POS=154;
mysql> start slave; #Start replicationmysql> show slave status\G
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 172.16.115.245
Master_User: repl
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: binlog.000004
Read_Master_Log_Pos: 104634190
Relay_Log_File: relay.000003
Relay_Log_Pos: 104632819
Relay_Master_Log_File: binlog.000004
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
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: 104634190
Relay_Log_Space: 104634713
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: 245
Master_UUID: 4f545573-3170-11e7-b903-000c29462d8c
Master_Info_File: /data/mysql/datadir/3306/data/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:

8. View master and slave related processes

Master Binlog Dump thread:

mysql> SHOW PROCESSLIST \G
*************************** 1. row ***************************
Id: 13
User: repl
Host: 172.16.115.247:44602
db: NULL
Command: Binlog Dump
Time: 76514
State: Master has sent all binlog to slave; waiting for more updates
Info: NULL

Slave IO/SQL thread:

mysql> SHOW PROCESSLIST \G
*************************** 1. row ***************************
Id: 10
User: system user
Host: 
db: NULL
Command: Connect
Time: 81148
State: Waiting for master to send event
Info: NULL
*************************** 2. row ***************************
Id: 12
User: system user
Host: 
db: NULL
Command: Connect
Time: 5
State: Reading event from the relay log
Info: NULL

9. At this point, the master-slave configuration has been completed. You can create databases, tables, and other operations on the master server to see if the slave database is synchronized!

Summarize

The above is a detailed tutorial on how to build MySQL 5.7.18 master-slave replication (one master and one slave) introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time!

You may also be interested in:
  • Detailed explanation of MySQL master-slave database construction method
  • Using Docker containers to build MySql master-slave replication
  • Tutorial on building a master-slave replication architecture for MySQL 5.7 Docker
  • Detailed explanation of MySQL master-slave replication read-write separation construction
  • Implementation steps for building a MySQL master-slave replication environment based on Docker
  • Implementation ideas and steps for MySQL master-slave construction (multiple masters and one slave)

<<:  Detailed explanation of the role of key in React

>>:  Why should you be careful with Nginx's add_header directive?

Recommend

Detailed tutorial on installing MySQL offline on CentOS7

1. Delete the original mariadb, otherwise mysql c...

How to add links to FLASH in HTML and make it compatible with all major browsers

Look at the code first Copy code The code is as fo...

Using js to implement a number guessing game

Last week, the teacher gave me a small homework, ...

How to select all child elements and add styles to them in CSS

method: Take less in the actual project as an exa...

MySQL account password modification method (summary)

Preface: In the daily use of the database, it is ...

A complete explanation of MySQL high availability architecture: MHA architecture

Table of contents 1. Introduction 2. Composition ...

Encoding problems and solutions when mysql associates two tables

When Mysql associates two tables, an error messag...

Detailed explanation of JS ES6 coding standards

Table of contents 1. Block scope 1.1. let replace...

Detailed explanation of JavaScript implementation of hash table

Table of contents 1. Hash table principle 2. The ...

An example of how to write a big sun weather icon in pure CSS

Effect The effect diagram is as follows Implement...

How to control the startup order of docker compose services

summary Docker-compose can easily combine multipl...

Solution to the garbled problem of web pages when the encoding is set to utf-8

Recently, when I was writing web pages with PHP, I...