溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

mysql中RESET MASTER和RESET SLAVE怎么用

發(fā)布時(shí)間:2021-11-06 11:00:25 來(lái)源:億速云 閱讀:244 作者:小新 欄目:MySQL數(shù)據(jù)庫(kù)

這篇文章主要介紹mysql中RESET MASTER和RESET SLAVE怎么用,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

【一】RESET MASTER參數(shù)

功能說(shuō)明:刪除所有的binglog日志文件,并將日志索引文件清空,重新開(kāi)始所有新的日志文件。用于第一次進(jìn)行搭建主從庫(kù)時(shí),進(jìn)行主庫(kù)binlog初始化工作;

測(cè)試如下:

未刪除前

[root@mysql01 mysql]# pwd
/data/mysql


[root@mysql01 mysql]# ls
mysql中RESET MASTER和RESET SLAVE怎么用


mysql> show master status\G;
*************************** 1. row ***************************
            File: mysql-bin.000025
        Position: 107
    Binlog_Do_DB:
Binlog_Ignore_DB:
1 row in set (0.01 sec)


當(dāng)前有25個(gè)binlong日志,且Position的位置為107

運(yùn)行RESET MASTER

mysql> reset master;
Query OK, 0 rows affected (0.03 sec)


mysql> show master status\G;
*************************** 1. row ***************************
            File: mysql-bin.000001
        Position: 107
    Binlog_Do_DB:
Binlog_Ignore_DB:
1 row in set (0.00 sec)

 

mysql中RESET MASTER和RESET SLAVE怎么用

 

顯示所有的binlog已經(jīng)被刪除掉,且binlog從000001 開(kāi)始記錄

注:當(dāng)數(shù)據(jù)庫(kù)要清理binlog文件的時(shí)候,可以通過(guò)操作系統(tǒng)進(jìn)行刪除,也可以運(yùn)行reset master進(jìn)行刪除。但是如果當(dāng)前是主數(shù)據(jù)庫(kù),且主從數(shù)據(jù)庫(kù)正常的時(shí)候,千萬(wàn)不能用這種方式刪除。

【使用場(chǎng)景】第一次搭建主從數(shù)據(jù)庫(kù)時(shí),用于主庫(kù)的初始化binglog操作;


【二】RESET SLAVE

功能說(shuō)明:用于刪除SLAVE數(shù)據(jù)庫(kù)的relaylog日志文件,并重新啟用新的relaylog文件;

登錄從數(shù)據(jù)庫(kù),未刪除前

mysql> show slave status\G;
*************************** 1. row ***************************
               Slave_IO_State: Connecting to master
                  Master_Host: 192.168.47.167
                  Master_User: server
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000019
          Read_Master_Log_Pos: 12992
              Relay_Log_File: mysql02-relay-bin.000004
                Relay_Log_Pos: 4
        Relay_Master_Log_File: mysql-bin.000019
 

mysql中RESET MASTER和RESET SLAVE怎么用

當(dāng)前relaylog為0004;

刪除后

mysql> stop slave;                先停止slave
Query OK, 0 rows affected (0.01 sec)

mysql> reset slave;               
Query OK, 0 rows affected (0.04 sec)

 

mysql> show slave status\G;
*************************** 1. row ***************************
               Slave_IO_State:
                  Master_Host: 192.168.47.167
                  Master_User: server
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File:
          Read_Master_Log_Pos: 4
               Relay_Log_File: mysql02-relay-bin.000001
                Relay_Log_Pos: 4

 

mysql中RESET MASTER和RESET SLAVE怎么用

RESET SLAVE將使SLAVE忘記主從復(fù)制關(guān)系的位置信息。該語(yǔ)句將被用于干凈的啟動(dòng), 它刪除master.info文件和relay-log.info 文件以及所有的relay log 文件并重新啟用一個(gè)新的relaylog文件。

使用場(chǎng)景:當(dāng)原來(lái)的主從關(guān)系被破壞之后,從庫(kù)經(jīng)過(guò)重新初始化后直接連接會(huì)報(bào) ERROR 1201的錯(cuò)誤,運(yùn)行reset slave后,重新配置主從連接就可以了;

mysql> CHANGE MASTER TO MASTER_HOST='192.168.0.167',MASTER_USER='test',MASTER_PASSWORD='test', MASTER_LOG_FILE='mysql-bin.000001',MASTER_LOG_POS=176658;

ERROR 1201 (HY000): Could not initialize master info structure; more error messages can be found in the MySQL error log

以上是“mysql中RESET MASTER和RESET SLAVE怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI