mysql基于GTID主从切换

mysql 从库升级为主库的步骤

1、进入主库,设置只读;

1SET GLOBAL read_only=1;

2、原有master作为从库挂到新master里

grep -i "All other slaves should start" /var/log/masterha/app1/manager.log

去原master上执行提示的命令

All other slaves should start replication from here. Statement should be: CHANGE MASTER TO MASTER_HOST='192.168.44.156', MASTER_PORT=3306, MASTER_AUTO_POSITION=1, MASTER_USER='root', MASTER_PASSWORD='xxx';

3、进入从库,等同步完成后,暂停同步,并设置读写;

stop slave;

SET GLOBAL read_only=0;

reset slave all;

-- RESET SLAVE ALL是清除从库的同步复制信息、包括连接信息和二进制文件名、位置-- 从库上执行这个命令后,使用show slave status将不会有输出。

4、修改配置文件连接到新的主库上。

 change master to master_host='192.168.44.155',master_user='root',master_password='123456',master_auto_position=1;

你可能感兴趣的:(mysql基于GTID主从切换)