MySQL master-slave replication configuration process

MySQL master-slave replication configuration process

Main library configuration

1. Configure mysql

vim /etc/my.cn
# Add the following content to the file server-id=1 # Ensure that the server id is unique log-bin = /var/lib/mysql/mysql-bin.log
binlog-do-db = db1 
binlog-do-db = db2

Among them, db1 and db2 are the libraries planned for master-slave replication. If there are multiple ones, just write multiple lines. After configuration, restart the database: service mysqld restart restart

2. Add replication user

Through phpmyadmin, add a new user, and grant REPLICATION SLAVE permissions. Or log in to mysql as root user and grant permissions:

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

Where repl is the username and password is the password of that user.

3. Dump data

If you can ensure that no new data is generated, there is no need to lock the database. If this cannot be guaranteed, you need to lock the database for each dump data:

use db1;
FLUSH TABLES WITH READ LOCK;

Then dump the data:

mysqldump -uroot -p db1 > db1.sql

If there are multiple databases, repeat the above process multiple times.

4. Check the binary file location

Log in to MySQL as root and check the master status:

show master status;

This command will produce output similar to the following format:

+-----------------+-----------+----------------+------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+-----------------+-----------+----------------+------------------+
| mysql-bin.00002 | 445 | db1,db2 | |
+-----------------+-----------+----------------+------------------+
1 row in set (0.00 sec)

5. Unlock

If the number of exports is first and the database is read locked, you need to release it:

use db1;
UNLOCK TABLES;

At this point, the main database configuration is complete. In particular, remember the file and position values ​​in show master status output.

Configuration from the library

1. Create a new database

First, create a database with the same name on the slave library.

2. Configure the slave database

vim /etc/my.cnf
# Add the following content to my.cnf:
server-id = 2 # Ensure that the id is unique relay-log = /var/lib/mysql/mysql-relay-bin.log
replicate-wild-do-table = db1.%
replicate-wild-do-table = db2.%

If you synchronize multiple databases, replicate-wild-do-table needs to write multiple lines. After configuration, restart the database.

3. Import data

Import the data dumped from the master server into the slave server:

mysql -uroot -p db1 < db1.sql

4. Configure master-slave synchronization

Log in to the MySQL server and configure the synchronized master server information:

> change master to master_host='xxx.xxx.xx.xx',
> master_user='repl',
> master_password='password',
> master_log_file='mysql-bin.00000x',
> master_log_pos=xxxx;

After configuration, start master-slave synchronization: start slave . Then check the status through the command: show slave status . If successful, both slave_io_running and slave_sql_running should be yes.

test

Operations such as adding new records or adding tables on the master database can almost be reflected in the slave database in real time.

The above is the details of the MySQL master-slave replication configuration process. For more information about MySQL master-slave replication configuration, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • How to fix duplicate key issues in MySQL master-slave replication
  • Comprehensive analysis of MySql master-slave replication mechanism
  • Detailed explanation of MySQL master-slave replication and read-write separation
  • MYSQL database GTID realizes master-slave replication (super convenient)
  • Implementation principle and configuration of MySql master-slave replication
  • MySQL master-slave replication principle and points to note
  • How to skip errors in mysql master-slave replication
  • Comprehensive interpretation of MySQL master-slave replication, from principle to installation and configuration
  • Summary of several replication methods for MySQL master-slave replication
  • Common repair methods for MySQL master-slave replication disconnection

<<:  How to use filters to implement monitoring in Zabbix

>>:  Example code of Vue3 encapsulated magnifying glass component

Recommend

Tutorial on installing MYSQL8.0 on Alibaba Cloud ESC

Open the connection tool. I use MobaXterm_Persona...

Docker configuration Alibaba Cloud image acceleration pull implementation

Today I used docker to pull the image, but the sp...

Vue implements scroll loading table

Table of contents Achieve results Rolling load kn...

jQuery implements all selection and reverse selection operation case

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

How to implement JavaScript output of Fibonacci sequence

Table of contents topic analyze Basic solution Ba...

Differences between ES6 inheritance and ES5 inheritance in js

Table of contents Inheritance ES5 prototype inher...

Mybatis statistics of the execution time of each SQL statement

background I am often asked about database transa...

MySQL 5.7.11 zip installation and configuration method graphic tutorial

1. Download the MySQL 5.7.11 zip installation pac...

mysql: [ERROR] unknown option '--skip-grant-tables'

MySQL database reports ERROR 1045 (28000): Access...

MySQL 4 methods to import data

1. Import mysql command The mysql command import ...

Detailed explanation of two ways to dynamically change CSS styles in react

The first method: dynamically add a class to show...

MySQL multi-table join query example explanation

In actual projects, there are relationships betwe...