【MySQL】复制1236错误(不同版本间binlog_checksum配置问题)


现象:
 Last_IO_Errno: 1236
                Last_IO_Error: Got fatal error 1236 from master when reading data from binary log: 'Slave can not handle replication events with the checksum that master is configured to log; the first event 'mysql-bin.000001' at 4, the last event read from '/usr/local/mysql/data/mysql-bin.000001' at 120, the last byte read from '/usr/local/mysql/data/mysql-bin.000001' at 120.'
现象分析:这是不同版本间出现的checksum的问题,mysql5.6.5以后的版本中binlog_checksum=crc32,而低版本都是binlog_checksum=none。
解决方法:
在高版本上启动binlog_checksum=none,然后跳过现有的采用checksum的事件(当然也可以flush logs,然后指向binlog日志文件的最新位置)
当然存在一个问题就是主从数据不一致,这个可以percona的pt_table_sync工具结局

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/30221425/viewspace-1798856/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/30221425/viewspace-1798856/

你可能感兴趣的:(【MySQL】复制1236错误(不同版本间binlog_checksum配置问题))