标签:故障处理 retrieve slave 错误 其它 purge mysql reset style
登录从库
stop slave;
查看执行事务
show slave status\G
Retrieved_Gtid_Set: ee3bdb44-f6a1-11e7-b194-005056a35fd4:21315405-51853406
Executed_Gtid_Set: ee3bdb44-f6a1-11e7-b194-005056a35fd4:1-51853406
注:Retrieved_Gtid_Set 为获取主库上的事务ID
Executed_Gtid_set为正在执行的事务ID
reset master;
SET @@GLOBAL.GTID_PURGED =‘ ee3bdb44-f6a1-11e7-b194-005056a35fd4:51853406‘
start slave;
show slave status\G,查看同步是否正常
如果错误很多。建议重新作从库。
mysql 5.7 基于GTID 主从同步的1236故障处理(其它事务故障等同)
标签:故障处理 retrieve slave 错误 其它 purge mysql reset style
原文地址:https://www.cnblogs.com/net2817/p/9340786.html