我使用启动了一个 MySQL 从属服务器innobackupex
,并且Read_Master_Log_Pos
:和Relay_Log_Pos
:正在更新,然而落后于主服务器的秒数却不断增加(目前正在Seconds_Behind_Master:496637
增加)。
有想法该怎么解决这个吗?
mysql> SHOW SLAVE STATUS\G
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 10.8.25.111
Master_User: repl
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.005021
Read_Master_Log_Pos: 279162266
Relay_Log_File: mysql-relay-bin.000004
Relay_Log_Pos: 378939436
Relay_Master_Log_File: mysql-bin.004997
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
Replicate_Do_DB:
Replicate_Ignore_DB:
Replicate_Do_Table:
Replicate_Ignore_Table:
Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table:
Last_Errno: 0
Last_Error:
Skip_Counter: 0
Exec_Master_Log_Pos: 378939290
Relay_Log_Space: 26048998487
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: 497714
Master_SSL_Verify_Server_Cert: No
Last_IO_Errno: 0
Last_IO_Error:
Last_SQL_Errno: 0
Last_SQL_Error:
Replicate_Ignore_Server_Ids:
Master_Server_Id: 1
1 row in set (0.00 sec)
答案1
尤其要注意Slave_IO_Running: No
和Slave_SQL_Running: No
。
我怀疑您的从属 SQL 没有运行,而您的从属 IO 正在运行。如果您遇到了问题Last_SQL_Error:
,则需要先修复错误,然后才能继续。如何处理每种不同的可能错误的细节可能值得单独提出一个问题。也许在数据库管理系统
如果没有错误或者您已经修复了错误,请执行START SLAVE;
并观察输出,SHOW SLAVE STATUS\G
直到出现另一个错误或从属服务器赶上来。