MySQL主从error1236:‘Could not find first log file name in binary log index file’处理#Olivia丶长歌#

在搭建一个MySQL master-slave集群时,执行了change master命令, start slave 启动主从服务,结果查看salve状态出现报错:

mysql> show slave status\G
*************************** 1. row ***************************
             Slave_IO_Running: No
            Slave_SQL_Running: Yes
 Last_IO_Errno: 1236
                Last_IO_Error: Got fatal error 1236 from master when reading data from binary log: 'Could not find first log file name in binary log index file'
************************************************************
首先查看执行的change master命令是否存在空格,如果change master命令没有错误。
做如下操作
从库
停止主从关系
mysql>stop slave;
主库
刷新binlog日志
mysql>flush logs;
查看binlog和pos号
mysql>show master status;
例:mysql-bin.000015,pos为120。
从库
执行命令,使binlog和pos对应主库
mysql>change master to master_log_file='mysql-bin.000015',master_log_pos=150;
开启主从服务
mysql>start slave;
查看主从状态
mysql>show slave status\G;
如果这时的IO线程还为NO,还报error1236,可能是因为主库服务器重启所致,找不到binlog的pos号。或者因为binlog过旧,因为binlog日志默认设置为保留七天。
解决方法
从库
mysql>stop slave;
主库
切换到binlog日志目录
cd /data/mysql/bin/
ls
找到最后一个binlog为mysql-bin.000053,将binlog重定向到text文件中
/usr/local/mysql/bin/mysqlbinlog  mysql-bin.000053>test.txt
然后
less  test.txt
# at 54378
#111010 16:35:46 server id 1 end_log_pos 627625631 Query thread_id=45613333
exec_time=32758 error_code=0
SET TIMESTAMP=1318289746/*!*/;
delete from freeshipping_bef_update where part='AR-4006WLM' and code=''
/*!*/;
# at54580
#111010 16:35:46 server id 1 end_log_pos627625751 Query thread_id=45613333
exec_time=32758 error_code=0
SET TIMESTAMP=1318289746/*!*/;
delete from shippingFee_special where part='AR-4006WLM'
/*!*/;
DELIMITER ;
# End of log file
ROLLBACK /* added by mysqlbinlog */;
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;

找到最接近错误标记的一个position是54580.

从库

mysql>change master to master_log_file='mysql-bin.000053',master_log_pos=54580;

mysql>start slave;

mysql>show slave status\G;

这时的IO线程和SQL线程应该全部为YES。主从复制服务开启。








评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值