现在由于业务的需要,不需要这台Slave同步复制Master,那么采用reset slave时,你会发现同步信息还存在,如:

  1. mysql> stop slave;

  2. Query OK, 0 rows affected (0.19 sec)

  3.        mysql        >reset slave;

  4. Query OK, 0 rows affected (0.17 sec)

  5.        mysql        > show slave status\G;

  6. *************************** 1. row ***************************

  7.               Slave_IO_State:  

  8.                  Master_Host: 192.168.8.22

  9.                  Master_User: repl

  10.                  Master_Port: 3306

  11.                Connect_Retry: 10

  12.              Master_Log_File:  

  13.          Read_Master_Log_Pos: 4

  14.               Relay_Log_File: vm02-relay-bin.000001

  15.                Relay_Log_Pos: 4

  16.        Relay_Master_Log_File:  

  17.             Slave_IO_Running: No

  18.            Slave_SQL_Running: No

  19.              Replicate_Do_DB:  

  20.          Replicate_Ignore_DB:  

  21.           Replicate_Do_Table:  

  22.       Replicate_Ignore_Table:  

  23.      Replicate_Wild_Do_Table:  

  24.  Replicate_Wild_Ignore_Table:  

  25.                   Last_Errno: 0

  26.                   Last_Error:  

  27.                 Skip_Counter: 0

  28.          Exec_Master_Log_Pos: 0

  29.              Relay_Log_Space: 126

  30.              Until_Condition: None

  31.               Until_Log_File:  

  32.                Until_Log_Pos: 0

  33.           Master_SSL_Allowed: No

  34.           Master_SSL_CA_File:  

  35.           Master_SSL_CA_Path:  

  36.              Master_SSL_Cert:  

  37.            Master_SSL_Cipher:  

  38.               Master_SSL_Key:  

  39.        Seconds_Behind_Master: NULL

  40. Master_SSL_Verify_Server_Cert: No

  41.                Last_IO_Errno: 0

  42.                Last_IO_Error:  

  43.               Last_SQL_Errno: 0

  44.               Last_SQL_Error:  

  45.  Replicate_Ignore_Server_Ids:  

  46.             Master_Server_Id: 22

  47. 1 row in set (0.02 sec)

  48. ERROR:  

  49. No query specified

执行reset slave,其实是把master.info和relay-log.info文件给删除,但里面的同步信息还在,那么可以用这个方法,让其清除的彻彻底底。

  1. mysql> reset slave all;

  2. Query OK, 0 rows affected (0.04 sec)

  3.        mysql        > show slave status\G;

  4. Empty set (0.02 sec)

  5. ERROR:  

  6. No query specified

注:此语句支持在MySQL5.5或更高版本。