Configure Mysql master-slave service implementation example

Configure Mysql master-slave service implementation example

Configure Mysql master-slave service implementation example

### Configure the main database my.cnf

server-id=1
log-bin=master-bin
log-bin-index=master-bin.index

### Create a synchronization account on the primary database

create user backup;
GRANT REPLICATION SLAVE ON *.* TO 'backup'@'192.168.%.%' IDENTIFIED BY 'mysql';

### Configure the slave database my.cnf

server-id=2
relay-log-index=slave-relay-bin.index
relay-log=slave-relay-bin

### Restart mysql service

service mysqld restart

### Connect to the Master Service

change master to master_host='192.168.91.128',
master_port=3306,master_user='backup',master_password='mysql',
master_log_file='master-bin.000001',master_log_pos=0;

### Start the slave service

start slave;

### Check the Master service status

SHOW MASTER STATUS;

### Check the Slave service status

SHOW slave STATUS \G;

### Check if server_id is the same, it needs to be different

show variables like 'server_id';

Common Mistakes

Error: 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.

Solution: Check if server-uuid=******************** in auto.cnf in the data directory is the same, change it to different

Thank you for reading, I hope it can help you, thank you for your support of this site!

You may also be interested in:
  • Special issues with mysql master-slave server configuration
  • Simple configuration of mysql master-slave server
  • My experience of MySQL master-slave server synchronization

<<:  js to implement the snake game with comments

>>:  How to build a new image based on an existing image in Docker

Recommend

A complete guide to the Docker command line (18 things you have to know)

Preface A Docker image consists of a Dockerfile a...

How to set remote access permissions in MySQL 8.0

The previous article explained how to reset the M...

Page Speed ​​Optimization at a Glance

I believe that the Internet has become an increas...

How to write the Nofollow tag and how to use it

The "nofollow" tag was proposed by Goog...

Detailed explanation of nginx reverse proxy webSocket configuration

Recently, I used the webSocket protocol when work...

How to connect to MySQL visualization tool Navicat

After installing Navicat The following error may ...

Summarize the common application problems of XHTML code

<br />For some time, I found that many peopl...

MySQL log system detailed information sharing

Anyone who has worked on a large system knows tha...

MySQL 8.0.12 Installation and Usage Tutorial

Recorded the installation and use tutorial of MyS...

30 free high-quality English ribbon fonts

30 free high-quality English ribbon fonts for down...

Execute the shell or program inside the Docker container on the host

In order to avoid repeatedly entering the Docker ...

Ubuntu20.04 VNC installation and configuration implementation

VNC is a remote desktop protocol. Follow the inst...