huangfen2002 发表于 2018-10-8 11:43:55

mysql多源复制详解

#在从库上执行命令  
mysql -uroot -p'******' -h10.2.0.7 -P3306
  
mysql> show slave status\G
  
*************************** 1. row ***************************
  
               Slave_IO_State: Waiting for master to send event
  
                  Master_Host: 10.2.0.5
  
                  Master_User: rep
  
                  Master_Port: 3306
  
                Connect_Retry: 60
  
            Master_Log_File: mysql-bin.001297
  
          Read_Master_Log_Pos: 5607291
  
               Relay_Log_File: beifen1-relay-bin-al_rds.000030
  
                Relay_Log_Pos: 5607464
  
      Relay_Master_Log_File: mysql-bin.001297
  
             Slave_IO_Running: Yes
  
            Slave_SQL_Running: Yes
  
            Replicate_Do_DB:
  
          Replicate_Ignore_DB:
  
         Replicate_Do_Table:
  
       Replicate_Ignore_Table:
  
      Replicate_Wild_Do_Table: work1.%,work2.%
  
Replicate_Wild_Ignore_Table:
  
                   Last_Errno: 0
  
                   Last_Error:
  
               Skip_Counter: 0
  
          Exec_Master_Log_Pos: 5607291
  
            Relay_Log_Space: 5607767
  
            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: 2721321239
  
                  Master_UUID: 4cdc2a74-6299-11e6-95ce-008cfaf595bc
  
             Master_Info_File: mysql.slave_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: 4cdc2a74-6299-11e6-95ce-008cfaf595bc:38888940-39258544
  
            Executed_Gtid_Set: 09cb91bf-2669-11e7-8b70-00163e0835ff:1-640645,
  
1db4cb1b-5e00-11e7-89eb-00163e046b4a:1-8,
  
3edae34c-6299-11e6-95cd-8038bc0c67be:1-6758,
  
4cdc2a74-6299-11e6-95ce-008cfaf595bc:1-39258544
  
                Auto_Position: 1
  
         Replicate_Rewrite_DB:
  
               Channel_Name: al_rds
  
         Master_TLS_Version:
  
*************************** 2. row ***************************
  
               Slave_IO_State: Waiting for master to send event
  
                  Master_Host: 10.2.0.6
  
                  Master_User: rep
  
                  Master_Port: 3306
  
                Connect_Retry: 60
  
            Master_Log_File: mysql-bin.000013
  
          Read_Master_Log_Pos: 246854093
  
               Relay_Log_File: beifen1-relay-bin-me_mysql.000004
  
                Relay_Log_Pos: 155502415
  
      Relay_Master_Log_File: mysql-bin.000013
  
             Slave_IO_Running: Yes
  
            Slave_SQL_Running: Yes
  
            Replicate_Do_DB:
  
          Replicate_Ignore_DB:
  
         Replicate_Do_Table:
  
       Replicate_Ignore_Table:
  
      Replicate_Wild_Do_Table: work1.%,work2.%
  
Replicate_Wild_Ignore_Table:
  
                   Last_Errno: 0
  
                   Last_Error:
  
               Skip_Counter: 0
  
          Exec_Master_Log_Pos: 246854093
  
            Relay_Log_Space: 155502632
  
            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: 253241
  
                  Master_UUID: 817498dc-2676-11e7-a673-00163e024674
  
             Master_Info_File: mysql.slave_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: 09cb91bf-2669-11e7-8b70-00163e0835ff:514003-640645
  
            Executed_Gtid_Set: 09cb91bf-2669-11e7-8b70-00163e0835ff:1-640645,
  
1db4cb1b-5e00-11e7-89eb-00163e046b4a:1-8,
  
3edae34c-6299-11e6-95cd-8038bc0c67be:1-6758,
  
4cdc2a74-6299-11e6-95ce-008cfaf595bc:1-39258544
  
                Auto_Position: 1
  
         Replicate_Rewrite_DB:
  
               Channel_Name: me_mysql
  
         Master_TLS_Version:
  
2 rows in set (0.00 sec)


页: [1]
查看完整版本: mysql多源复制详解