一,主库执行操作
1,备份主库
[root@MyCloudServer ~]# mysqldump -uroot -p --set-gtid-purged=OFF --single-transaction --master-data=1 --all-databases > dump.sql
2,将备份文件拷贝到从库
[root@MyCloudServer ~]# scp -P1022 book.sql slave1:/root/
(因为ssh端口为1022)
3,查看master_log_pos
[root@MyCloudServer ~]# cat book.sql |grep "MASTER_LOG_FILE"
CHANGE MASTER TO MASTER_LOG_FILE='mysql-bin.000014', MASTER_LOG_POS=16872439;
二,从库执行操作
1,停掉从库
mysql> stop slave;
Query OK, 0 rows affected (0.01 sec)
2,重置从库
mysql>