Master-slave synchronization configuration of Mysql database

Master-slave synchronization configuration of Mysql database

Mysql master-slave synchronization configuration

Configuration preparation:

  • Two databases are required
  • mysql visualization tool, of course you can also use the command line
  • Here I demonstrate how to use docker to start two mysql containers. You can also install two mysql containers as long as the versions are the same.

1. Install two mysql

  • Create the msyql mount directory
[root@localhost /]# mkdir -p /opt/docker/mysql1/conf/
[root@localhost /]# mkdir -p /opt/docker/mysql1/logs/
[root@localhost /]# mkdir -p /opt/docker/mysql1/data/
  • Start the first mysql and mount the corresponding file directory port: 6894
[root@localhost /]# docker run -d -p 6894:3306 --name mysql1 \
                    -v /opt/docker/mysql1/conf:/etc/mysql/ \
                    -v /opt/docker/mysql1/logs:/logs \
                    -v /opt/docker/mysql1/data:/var/lib/mysql \
                    --privileged=true \
                    -e MYSQL_ROOT_PASSWORD=qtykGhC29eP4Smpmysql:5.7
  • By copying the second mysql

Please note that there is an auth.cnf file in the /opt/docker/mysql2/data/auto.cnf directory of the copied mysql that needs to be deleted.

[root@localhost docker]# cp -r /opt/docker/mysql1/ /opt/docker/mysql2/
  • Delete the auth.cnf file
[root@localhost docker]# rm -f /opt/docker/mysql2/data/auto.cnf
  • Start the second mysql
[root@localhost docker]# docker run -d -p 6895:3306 --name mysql2 \
                    -v /opt/docker/mysql2/conf:/etc/mysql/ \
                    -v /opt/docker/mysql2/logs:/logs \
                    -v /opt/docker/mysql2/data:/var/lib/mysql \
                    --privileged=true \
                    -e MYSQL_ROOT_PASSWORD=qtykGhC29eP4Smpmysql:5.7

2. Write the mysql configuration file

  • Main library my.cnf file
[root@localhost docker]# vim /opt/docker/mysql1/conf/my.cnf
  • my.cnf file contents
[mysqld]
# Configuration of the master database server-id=1 # Uniqueness of the service id log-bin=mysql1-log # Enable binary log binlog-format=ROW # Logging mode replicate-do-db=db_docker # Name of the data to be replicated # replicate-ignore-db=db_docker # Name of the data that does not need to be replicated
  • From the library my.cnf file
[root@localhost docker]# vim /opt/docker/mysql2/conf/my.cnf
  • my.cnf file contents
[mysqld]
# Configure from the library server-id=2 # Uniqueness of service id log-bin=mysql2-log # Enable binary log binlog-format=ROW # Logging mode binlog-do-db=db_docker # Name of data to be copied # binlog-ignore-db=db_docker # Name of data that does not need to be copied
  • Restart the docker mysql container
[root@localhost docker]# docker restart mysql1
[root@localhost docker]# docker restart mysql2

3. Initialize data

  • The two mysqls execute the following sql statements to create the database and table
-- Create a database CREATE DATABASE `db_docker`;
USE db_docker;
-- Create table CREATE TABLE `t_docker` (
    `id` INT ( 11 ) NOT NULL AUTO_INCREMENT,
    `name` VARCHAR(255) DEFAULT NULL,
     PRIMARY KEY ( `id` )
) ENGINE = INNODB AUTO_INCREMENT = 0 DEFAULT CHARSET = utf8;

View the main library binary log:

  • The main library executes the following command to output the status information of the binary log file
mysql> SHOW MASTER STATUS ;
+------------------+----------+--------------+------------------+-------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------------+----------+--------------+------------------+-------------------+
| mysql-bin.000001 | 2223 | | | |
+------------------+----------+--------------+------------------+-------------------+

Configure slave binary log

  • The slave changes the parameters used to connect to the replication master, read the master's binary log, and read the slave's relay log.
CHANGE MASTER TO
MASTER_HOST="192.168.101.59", # Host address your main server ip
Master_Port=6894, # Port MASTER_USER="root", # Account MASTER_PASSWORD="qtykGhC29eP4Smp", # Password MASTER_LOG_FILE="mysql-bin.000001", # The main library binary file name is filled in according to the actual situation MASTER_LOG_POS=377; # The main library binary file position is filled in according to the actual situation
  • Execute from the library to start replication
mysql> START SLAVE;

Status information of basic parameters of slave library threads. As of MySQL 8.0.22, use SHOW REPLICA STATUS instead of SHOW SLAVE STATUS, which is deprecated. In versions prior to MySQL 8.0.22, use SHOW SLAVE STATUS . This statement requires the REPLICATION CLIENT privilege (or the deprecated SUPER privilege).

If the following two parameters are yes, it means the configuration is successful, otherwise there is a problem with the configuration. Slave_IO_Running: Yes Slave_SQL_Running: Yes

If one of the above two parameters is not No, it means there is an error. Please check these two fields Last_Errno Last_Error

The error content will be recorded in the Last_Error field and modified according to the error content.

mysql> SHOW SLAVE STATUS \G;
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 192.168.101.59
                  Master_User: root
                  Master_Port: 6894
                Connect_Retry: 60
              Master_Log_File:mysql-bin.000001
          Read_Master_Log_Pos: 2223
               Relay_Log_File: 98394ee2fb48-relay-bin.000004
                Relay_Log_Pos: 320
        Relay_Master_Log_File: mysql-bin.000001
             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: 2223
              Relay_Log_Space: 534
              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: aa58ab20-f500-11eb-aa65-0242ac110002
             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. Other MySQL related commands

  • Stop the data update operation of the main database
mysql>flush tables with read lock;
  • Unlock the main database
mysql>unlock tables;
  • Execute from the database and stop replication; when the slave database configuration binary log fails, you need to stop replication or reset it, reconfigure it, and then start replication
mysql> STOP SLAVE;
  • Execute from the library to reset replication
mysql> RESET SLAVE;

mysql notes

  • The commands and configuration files corresponding to different versions may be different
  • The demonstration uses MySQL 5.7
  • If the command or configuration does not work, please visit the official website
  • In actual applications, try not to use the default port 3306 as it is vulnerable to attacks.

mysql container:

Entering the container

docker exec -it mysql2 /bin/sh
#mysql2 container name can also be container id

Login to mysql

mysql -u root -pqtykGhC29eP4Smp
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 9
Server version: 5.7.35-log MySQL Community Server (GPL)

Copyright (c) 2000, 2021, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>

my.cnf configuration explanation

[mysqld]
# Main database configuration # Specify a unique server ID. It can be 0 but the server will reject it, so the valid value is between 1 and 4294967295. Default value 1
# Official website https://dev.mysql.com/doc/refman/5.7/en/replication-options.html
server-id=1
# Enable binary logging. The binary file name can be a path, for example: /logs/mysql/log. However, you need to give the directory file permissions, otherwise MySQL will not have permission to write, resulting in an error.
log-bin=mysql1-log
# There are three logging modes # STATEMENT causes logging to be statement based.
# ROW causes logging to be row based. This is the default setting.
# MIXED causes logging to use the mixed format. Between the first two modes# Official website https://dev.mysql.com/doc/refman/5.7/en/binary-log-setting.html
binlog-format=ROW 
# The name of the database to copy. To specify multiple databases, you must use multiple instances of this option.
# Since database names can contain commas, if you provide a comma-separated list, the list will be treated as the name of a single database.
# Multiple instances:
# replicate-do-db=db_docker1 
# replicate-do-db=db_docker2 
replicate-do-db=db_docker 
#Data name that does not need to be replicated. Same configuration as above # replicate-ignore-db=db_docker #Data name that does not need to be replicated

[mysqld]
# Slave database configuration is the same as above. server-id=2 # Uniqueness of service id log-bin=mysql2-log # Open binary log binlog-format=ROW # Logging mode binlog-do-db=db_docker # Name of data to be copied # binlog-ignore-db=db_docker # Name of data that does not need to be copied

auth.cnf File

File content server-uuid

  • The UUID here must also be unique and will be automatically generated at startup. If you also created the database by copying the mysql data directory, you need to delete the file
[auto]
server-uuid=aa58ab20-f500-11eb-aa65-0242ac110002
  • If the UUID is the same, the following error will be reported
Fatal error: The slave I/O thread stops because master and slave have equal MySQL server UUIDs; these UUIDs must be different for replication to work.

Official website binary log configuration: https://dev.mysql.com/doc/refman/5.7/en/replication-options-binary-log.html

This is the end of this article about the details of MySQL master-slave synchronization configuration. For more relevant MySQL master-slave synchronization configuration content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Implementation steps of MYSQL database master-slave synchronization settings
  • MySQL master-slave replication semi-sync replication
  • MySQL master-slave synchronization principle and application
  • This article will show you the principle of MySQL master-slave synchronization
  • MySQL builds master-slave synchronization to implement operations

<<:  JavaScript Prototype Details

>>:  Detailed process of getting started with docker compose helloworld

Recommend

Implementation of importing and exporting docker images

Docker usage of gitlab gitlab docker Startup Comm...

An enhanced screenshot and sharing tool for Linux: ScreenCloud

ScreenCloud is a great little app you didn’t even...

Solution to transparent font problem after turning on ClearType in IE

The solution to the transparent font problem after...

How to declare a cursor in mysql

How to declare a cursor in mysql: 1. Declare vari...

JS function call, apply and bind super detailed method

Table of contents JS function call, apply and bin...

Implementation of local migration of docker images

I've been learning Docker recently, and I oft...

MySQL 5.7.17 latest installation tutorial with pictures and text

mysql-5.7.17-winx64 is the latest version of MySQ...

mysql installer community 8.0.12.0 installation graphic tutorial

This tutorial shares the installation of mysql in...

How to install and deploy gitlab server on centos7

I am using centos 7 64bit system here. I have tri...

What are the rules for context in JavaScript functions?

Table of contents 1. Rule 1: Object.Method() 1.1 ...

JavaScript to achieve drop-down menu effect

Use Javascript to implement a drop-down menu for ...