主服务器复制MySQL服务器时出错

时间:2012-10-17 13:12:30

标签: mysql replication slave

我已使用现有数据库在MySQL服务器5.2上设置Master to Master Replication。我成功地将我的Master 1的数据复制到Master 2,用户名为replication。但是当我尝试连接到Master 2时,我从Master 1收到错误。以下是它们的详细信息:

大师1:

的MySQL>显示奴隶状态\ G;

*************************** 1。排***************** **********

           Slave_IO_State: Connecting to master
              Master_Host: 10.34.1.37
              Master_User: replication
              Master_Port: 3306
            Connect_Retry: 10
          Master_Log_File: mysql-bin.000018
      Read_Master_Log_Pos: 107
           Relay_Log_File: XX-XX-01-relay-bin.000002
            Relay_Log_Pos: 4
    Relay_Master_Log_File: mysql-bin.000018
         Slave_IO_Running: Connecting
        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: 107
          Relay_Log_Space: 107
          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: 2003
            Last_IO_Error: error connecting to master 'replication@10.34.1.3
    7:3306' - retry-time: 10  retries: 86400
           Last_SQL_Errno: 0
           Last_SQL_Error:
    Replicate_Ignore_Server_Ids:
         Master_Server_Id: 0
   1 row in set (0.00 sec)

在Master 2中

的MySQL>显示奴隶状态\ G;

*************************** 1。排***************** **********

           Slave_IO_State: Waiting for master to send event
              Master_Host: 10.5.224.12
              Master_User: replication
              Master_Port: 3306
            Connect_Retry: 60
          Master_Log_File: mysql-bin.000019
      Read_Master_Log_Pos: 107
           Relay_Log_File: xx-xx-xx-relay-bin.000029
            Relay_Log_Pos: 253
    Relay_Master_Log_File: mysql-bin.000019
         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: 107
          Relay_Log_Space: 560
          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
   1 row in set (0.00 sec)

   ERROR:
   No query specified

请帮帮我。您的解决方案将指导我解决任务。提前谢谢。

1 个答案:

答案 0 :(得分:2)

确保您可以从Master 1 DB的主机连接到Master 2的MySQL套接字,您可以验证您是否能够通过shell命令进行连接:

telnet master-2-ip MYSQLPORT //3306 is the default port for mysql

如果此命令成功(这意味着您没有'拒绝连接'),请尝试连接:

mysql -u user -p'password' -H host -P port

如果问题不是连接问题,在/ var / log下发布你的mysql日志可能会有所帮助。