博客
关于我
mysql slave 停了_slave 停止。求解决方法
阅读量:795 次
发布时间:2023-02-10

本文共 3582 字,大约阅读时间需要 11 分钟。

hi

slave 执行到185793432停止了

mysql> show slave status\G;

*************************** 1. row ***************************

Slave_IO_State:

Master_Host: 10.0.0.1

Master_User: repl

Master_Port: 3306

Connect_Retry: 60

Master_Log_File: mysql-bin.000049

Read_Master_Log_Pos: 187447247

Relay_Log_File: oastandby-relay-bin.000067

Relay_Log_Pos: 1996329

Relay_Master_Log_File: mysql-bin.000049

Slave_IO_Running: No

Slave_SQL_Running: No

Replicate_Do_DB:

Replicate_Ignore_DB:

Replicate_Do_Table:

Replicate_Ignore_Table:

Replicate_Wild_Do_Table:

Replicate_Wild_Ignore_Table:

Last_Errno: 1594

Last_Error: Relay log read failure: Could not parse relay log event entry. The possible reasons are: the master's binary log is corrupted (you can check this by running 'mysqlbinlog' on the binary log), the slave's relay log is corrupted (you can check this by running 'mysqlbinlog' on the relay log), a network problem, or a bug in the master's or slave's MySQL code. If you want to check the master's binary log or slave's relay log, you will be able to know their names by issuing 'SHOW SLAVE STATUS' on this slave.

Skip_Counter: 1

Exec_Master_Log_Pos: 185793432

Relay_Log_Space: 3651056

Until_Condition: None

Until_Log_File:

Until_Log_Pos: 0

Master_SSL_Allowed: No

Master_SSL_CA_File:

Master_SSL_CA_Path:

Master_SSL_Cert:

Master_SSL_Cipher:

Master_SSL_Key:

Seconds_Behind_Master: NULL

Master_SSL_Verify_Server_Cert: No

Last_IO_Errno: 0

Last_IO_Error:

Last_SQL_Errno: 1594

Last_SQL_Error: Relay log read failure: Could not parse relay log event entry. The possible reasons are: the master's binary log is corrupted (you can check this by running 'mysqlbinlog' on the binary log), the slave's relay log is corrupted (you can check this by running 'mysqlbinlog' on the relay log), a network problem, or a bug in the master's or slave's MySQL code. If you want to check the master's binary log or slave's relay log, you will be able to know their names by issuing 'SHOW SLAVE STATUS' on this slave.

1 row in set (0.00 sec)

ERROR:

No query specified

查看主库的bin  log:

[root@xxxx var]# mysqlbinlog -f  --start-position=185793432  mysql-bin.000049

/*!40019 SET @@session.max_insert_delayed_threads=0*/;

/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;

DELIMITER /*!*/;

# at 4

#100224 15:34:39 server id 1  end_log_pos 106   Start: binlog v 4, server v 5.1.26-rc-log created 100224 15:34:39

BINLOG '

j9aESw8BAAAAZgAAAGoAAAAAAAQANS4xLjI2LXJjLWxvZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

AAAAAAAAAAAAAAAAAAAAAAAAEzgNAAgAEgAEBAQEEgAAUwAEGggAAAAICAgC

'/*!*/;

# at 185793432

#100304 11:55:18 server id 1  end_log_pos 185793499     Query   thread_id=44876 exec_time=0     error_code=0

use crm/*!*/;

SET TIMESTAMP=1267674918/*!*/;

SET @@session.pseudo_thread_id=44876/*!*/;

SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;

SET @@session.sql_mode=0/*!*/;

SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;

/*!\C utf8 *//*!*/;

SET @@session.character_set_client=33,@@session.collation_connection=192,@@session.collation_server=8/*!*/;

SET @@session.lc_time_names=0/*!*/;

SET @@session.collation_database=DEFAULT/*!*/;

BEGIN

/*!*/;

# at 185793499

ERROR: Error in Log_event::read_log_event(): 'Sanity check failed', data_len: 1653248, event_type: 75

ERROR: Could not read entry at offset 185793999: Error in log format or read error.

DELIMITER ;

# End of log file

ROLLBACK /* added by mysqlbinlog */;

/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;

解决方法之一是更改max_allowed_packet  大小,我们现在已经将其改为100m

有什么别的方法让从库能继续同步吗?

作者: lijiebin

发布时间: 2010-03-15

转载地址:http://trffk.baihongyu.com/

你可能感兴趣的文章
MuseTalk如何生成高质量视频(使用技巧)
查看>>
mysql default unix_timestamp(now())
查看>>
mutiplemap 总结
查看>>
MySQL DELETE 表别名问题
查看>>
Mutual Training for Wannafly Union #8 D - Mr.BG Hates Palindrome 取余
查看>>
MySql DML语言新增多行数据、修改删除多个表
查看>>
MVC 301重定向(永久重定向不带www域名到带www的域名)
查看>>
Mysql Dump命令
查看>>
Mvc Action可以通过jsonp方式调取
查看>>
mysql ERROR 1396 (HY000): Operation CREATE USER failed 解决办法
查看>>
MVC aspx
查看>>
MySQL Error Handling in Stored Procedures---转载
查看>>
MVC HtmlHelper用法大全
查看>>
mysql er进制包安装_MySQL二进制包安装简略过程
查看>>
MVC jsp+servlet+javabean 连接Mysql数据库測试demo
查看>>
mysql explain关键字执行计划表解析系列一
查看>>
Mvc Session 设置以后再构造函数中取值时为null问题
查看>>
mysql explain字段含义
查看>>
MVC 区域功能
查看>>
mysql explain执行计划详解
查看>>