我在两个不同的服务器中设置了主/从复制,具有完全相同的特征。 MySQL版本为5.5,Slave通过VPN连接连接到Master。
我已经确认replicatino正在工作,当我在Master上创建一个新数据库时,我可以看到Slave中存在数据库。问题是当我在做一些故障情况并关闭VPN时,Master上的replicaotin状态没有显示任何错误:
mysql> show slave status;
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 10.0.0.2
Master_User: replication
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000001
Read_Master_Log_Pos: 52360
Relay_Log_File: mysql-relay-log.000004
Relay_Log_Pos: 441
Relay_Master_Log_File: mysql-bin.000001
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: 52360
Relay_Log_Space: 597
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: 0
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
"""
正如我所知,如果Slave_IO_Running和Slave_SQL_Running为Yes,这表明复制正在运行,但这是不可能的,因为服务器之间没有网络连接。
如果我在slave中重新启动mysql,那么我将看到连接错误并且复制状态将是准确的,如果我重新启用VPN而不重新启动Slave上的mysql,那么如果我创建复制将继续正常工作一个新的数据库。
有人能帮忙吗?
答案 0 :(得分:0)