不正常重启,导致主从不同步
通过上面的信息,我们可以知道,
1.Master_Log_File: mysql_binlog.004814 当前的slave已经读取了master的binlog文件为: mysql_binlog.004814
2.Read_Master_Log_Pos: 14241847 当前的slave读取的master binlog---mysql_binlog.004814的位置是14241847
3.Slave_SQL_Running: No 当前slave的sql线程停止,表示,master的变化,可以读取到slave,但是slave不能应用这些变换
4.Last_Errno: 1594 当前slave发生了1594错误
5.Last_Error 1594错误的具体信息在laster_error中显示
6.Relay_Master_Log_File: mysql_binlog.004734 当前slave应用的最新的master的binlog是:mysql_binlog.004734。这就意味着,如果我们想重新启用slave,同步的起点应该是从mysql_binlog.004734这个文件开始
7.Exec_Master_Log_Pos: 236752486 当前slave应用的最新的binlog的位置是:236752486 。这就意味着,同步的起点文件的位置是:236752486
show slave status\G; //进行查看
Master_Log_File: mysql-bin.000867
Exec_Master_Log_Pos: 416073167
stop slave;
reset slave all;
change master to master_host='18server',master_user='slave2',master_password='slave2',master_port=3306,master_log_file='mysql-bin.000867',master_log_pos=416073167;
start slave;
show slave status\G;
阅读(1108) | 评论(3) | 转发(0) |