MYSQL主從庫不同步故障一例解決方案

來源:互聯網
上載者:User

於是:

1、在主庫中建立一個臨時庫,將需要匯入的表檔案複製過來

2、執行

create database tmpdb;

create table tmptable;

cp mysql_date_file master_data_file //shell command 複製資料表檔案到master data_dir下

insert into master.tmptable select * from tmpdb.tmptable;

執行完後,主庫中資料匯入正常

再看slave status

show slave status;

發現錯誤:not found tmpdb.tmptable (大致意思是這個,原來的錯誤資訊沒有記錄下來)

匆忙中,看show master status 中Master_Log_Pos 標記為$Master_Log_Pos

然後在slave 上 CHANGE MASTER TO MASTER_LOG_POS=$Master_Log_Pos

然後再看show master status,發現有1162錯誤

到現在發現兩邊的資料不能同步了

。。。。。。

冥思苦想,不會重新做一遍主從庫吧?

mysqlbinlog 我突然想到了它

於是mysqlbinlog --start-position=190000000 --stop-position=200000000 xxx.binlog|grep tmptable

找到了在slave上執行錯誤的SQL

mysqlbinlog --start-position=190000000 --stop-position=200000000 xxx.binlog|grep tmptable > /tmp/tmpbinlog

vi /tmp/tmpbinlog (find tmptable)

找到錯誤SQL的下一個# at (一串數字)標記為$NEXT_POS

在slave 上 CHANGE MASTER TO MASTER_LOG_POS=$NEXT_POS

show slave status 顯示:

Slave_IO_Running: Yes
Slave_SQL_Running: Yes

哈哈,完成同步。

如果中間碰到1062錯誤 在slave設定檔中設定slave-skip-errors=1062,重啟slave

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.