mysql主从复制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.000004' at 120, the last event read from './mysql-bin.000004' at 120, the last byte read from './mysql-bin.000004' at 120.'
一、解决前提说明:
主库mysql5.6
从库mysql5.5
二、原因:这是由于 master 用的 mysql5.6 , binlog_checksum 默认设置的是 crc32。 如果slave用的 5.5 或者更早的版本,请将master的 binglog_checksum设置为 none。
三、解决办法:
主库的mysql5.6版本的配置文件my.cnf中设置
binlog_checksum =none
重启主库
然后对从库重新如下操作
stop slave
start slave
查看show slave status \G;
结果 :
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
配置成功了
转载请注明:谷谷点程序 » mysql主从复制Last_IO_Errno: 1236