抱歉,评论被关闭
如何解决数据库主从中断报错:Got fatal error 1236 from master when reading data from binary log?
数据库主从中断报错:Got fatal error 1236 from master when reading data from binary log: ‘Client requested master to start replication from impossible position’
出现这个问题是不正常先重启数据库或者断电。
查看一下从日志数据库错误:tail /mysql/mysql-error.log
查一下位置:/mysql/bin/mysqlbinlog –start-position=1039561141 /mysql/binlog/mysql-bin.00071
根据错误记录看中断同步位置,一般情况解决方法如下:
同步初始化
slave stop;
change master to master_user=’名称’,master_password=’密码’,master_host=’主数据IP’,master_port=3306,master_log_file=’当前日志名称’,master_log_pos=106;
slave start;
本文出自 “凹凸曼” 博客,请务必保留此出处 http://www.apoyl.com/?p=2199
目前盖楼