2016-09-09 7 views
0

オーケーエラーなしで動作しませんのMySQL MASTER-MASTER複製は

米国のサーバーのスレーブステータス:

mysql> show slave status\G; 
*************************** 1. row *************************** 
       Slave_IO_State: Waiting for master to send event 
        Master_Host: 149.202.89.7 
        Master_User: replicator 
        Master_Port: 3306 
       Connect_Retry: 60 
       Master_Log_File: mysql-bin.000002 
      Read_Master_Log_Pos: 2423 
       Relay_Log_File: ns531179-relay-bin.000002 
       Relay_Log_Pos: 320 
     Relay_Master_Log_File: mysql-bin.000002 
      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: 2423 
       Relay_Log_Space: 530 
       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: 2 
        Master_UUID: ec994d9c-7533-11e6-9389-f832e4ccf2f5 
      Master_Info_File: /var/lib/mysql/master.info 
        SQL_Delay: 0 
      SQL_Remaining_Delay: NULL 
     Slave_SQL_Running_State: Slave has read all relay log; waiting for more updates 
      Master_Retry_Count: 86400 
        Master_Bind: 
     Last_IO_Error_Timestamp: 
    Last_SQL_Error_Timestamp: 
       Master_SSL_Crl: 
      Master_SSL_Crlpath: 
      Retrieved_Gtid_Set: 
      Executed_Gtid_Set: 
       Auto_Position: 0 
     Replicate_Rewrite_DB: 
       Channel_Name: 
      Master_TLS_Version: 

EUサーバスレーブ状態

mysql> show slave status\G; 
*************************** 1. row *************************** 
       Slave_IO_State: Waiting for master to send event 
        Master_Host: 149.56.195.161 
        Master_User: replicator 
        Master_Port: 3306 
       Connect_Retry: 60 
       Master_Log_File: mysql-bin.000001 
      Read_Master_Log_Pos: 759 
       Relay_Log_File: ns3031179-relay-bin.000002 
       Relay_Log_Pos: 320 
     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: 759 
       Relay_Log_Space: 531 
       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 
        Master_UUID: 5380f515-632c-11e6-adce-a0369fa0a07d 
      Master_Info_File: /var/lib/mysql/master.info 
        SQL_Delay: 0 
      SQL_Remaining_Delay: NULL 
     Slave_SQL_Running_State: Slave has read all relay log; waiting for more updates 
      Master_Retry_Count: 86400 
        Master_Bind: 
     Last_IO_Error_Timestamp: 
    Last_SQL_Error_Timestamp: 
       Master_SSL_Crl: 
      Master_SSL_Crlpath: 
      Retrieved_Gtid_Set: 
      Executed_Gtid_Set: 
       Auto_Position: 0 
     Replicate_Rewrite_DB: 
       Channel_Name: 
      Master_TLS_Version: 

OSのバージョン

DISTRIB_ID=Ubuntu 
DISTRIB_RELEASE=16.04 
DISTRIB_CODENAME=xenial 
DISTRIB_DESCRIPTION="Ubuntu 16.04.1 LTS" 
NAME="Ubuntu" 
VERSION="16.04.1 LTS (Xenial Xerus)" 
ID=ubuntu 
ID_LIKE=debian 
PRETTY_NAME="Ubuntu 16.04.1 LTS" 
VERSION_ID="16.04" 
HOME_URL="http://www.ubuntu.com/" 
SUPPORT_URL="http://help.ubuntu.com/" 
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/" 
UBUNTU_CODENAME=xenial 
+0

マスターマスターはスケーリングを提供していません。いくつかのHAを提供しますが、自動化はしません。 –

+0

binlog-do/ignore設定はありますか? –

答えて

0

すべてが正しく設定されましたが、それは、それを使用するように構成されていたが、MySQLはバイナリログモードで動作していませんでした。手動修正は、mysql起動スクリプトに--binlogフラグを追加することでした。init.d

+0

'/ etc/my.cnf'はありませんか? –

+0

私はそれをセットアップしましたが、何らかの理由でまだ実行していなかったので、フラグを手動で追加する必要がありました – User

関連する問題