xinxuaw231 发表于 2018-9-28 14:17:44

MySQL--------基于GTID半同步搭建主从

mysql> show slave status\G  
*************************** 1. row ***************************
  
               Slave_IO_State: Waiting for master to send event
  
                  Master_Host: 172.18.0.1
  
                  Master_User: rpl
  
                  Master_Port: 3306
  
                Connect_Retry: 60
  
            Master_Log_File: bin.000002
  
          Read_Master_Log_Pos: 5768
  
               Relay_Log_File: relay.000005
  
                Relay_Log_Pos: 1354
  
      Relay_Master_Log_File: bin.000002
  
             Slave_IO_Running: Yes
  
            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: 1062
  
                   Last_Error: Could not execute Write_rows event on table mytest.a; Duplicate entry '4' for key 'PRIMARY', Error_code: 1062; handler error HA_ERR_FOUND_DUPP_KEY; the event's master log bin.000002, end_log_pos 5737
  
               Skip_Counter: 0
  
          Exec_Master_Log_Pos: 5512
  
            Relay_Log_Space: 2601
  
            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: 1062
  
               Last_SQL_Error: Could not execute Write_rows event on table mytest.a; Duplicate entry '4' for key 'PRIMARY', Error_code: 1062; handler error HA_ERR_FOUND_DUPP_KEY; the event's master log bin.000002, end_log_pos 5737
  
Replicate_Ignore_Server_Ids:
  
             Master_Server_Id: 110
  
                  Master_UUID: aaa45482-7047-11e7-a7b3-00163e0432c5
  
             Master_Info_File: mysql.slave_master_info
  
                  SQL_Delay: 0
  
          SQL_Remaining_Delay: NULL
  
      Slave_SQL_Running_State:
  
         Master_Retry_Count: 86400
  
                  Master_Bind:
  
      Last_IO_Error_Timestamp:
  
   Last_SQL_Error_Timestamp: 170724 17:15:51
  
               Master_SSL_Crl:
  
         Master_SSL_Crlpath:
  
         Retrieved_Gtid_Set: aaa45482-7047-11e7-a7b3-00163e0432c5:10-23
  
            Executed_Gtid_Set: aaa45482-7047-11e7-a7b3-00163e0432c5:1-22,
  
e5b2d96a-7047-11e7-b39c-00163e028c02:1-5
  
                Auto_Position: 1
  
         Replicate_Rewrite_DB:
  
               Channel_Name:
  
         Master_TLS_Version:
  
1 row in set (0.00 sec)


页: [1]
查看完整版本: MySQL--------基于GTID半同步搭建主从