1. 程式人生 > >mysql 5.7 基於GTID 主從同步的1236故障處理(其它事務故障等同)

mysql 5.7 基於GTID 主從同步的1236故障處理(其它事務故障等同)

其它 top 處理 set tid gtid stop eve 1-1

登錄從庫

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故障處理(其它事務故障等同)