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:
|
<<: js to implement the snake game with comments
>>: How to build a new image based on an existing image in Docker
Preface A Docker image consists of a Dockerfile a...
Nowadays, cross-platform development technology i...
Table of contents HTTP hijacking, DNS hijacking a...
The previous article explained how to reset the M...
I believe that the Internet has become an increas...
The "nofollow" tag was proposed by Goog...
Recently, I used the webSocket protocol when work...
After installing Navicat The following error may ...
<br />For some time, I found that many peopl...
Anyone who has worked on a large system knows tha...
Recorded the installation and use tutorial of MyS...
30 free high-quality English ribbon fonts for down...
In order to avoid repeatedly entering the Docker ...
VNC is a remote desktop protocol. Follow the inst...
Error: Connection to blog0@localhost failed. [080...