MySQL誤刪除InnoDB資料檔案恢複

來源:互聯網
上載者:User

MySQL誤刪除InnoDB資料檔案恢複

錯誤重現:
 使用rm -f ib*刪除資料檔案和重做記錄檔。這時mysql進程還存在,mysql還能正常使用。
 
檔案恢複:
  1:尋找mysqld的進程號。
# netstat -ntpl | grep mysqld
 tcp    0  0 0.0.0.0:3306  0.0.0.0:*      LISTEN  12147/mysqld

2:利用進程號尋找如下檔案。
# ll /proc/12147/fd | egrep 'ib_|ibdata'
  lrwx------ 1 root root 64 Jun 18 09:23 10 -> /mydata/ib_logfile1 (deleted)
  lrwx------ 1 root root 64 Jun 18 09:23 4 -> /mydata/ibdata1 (deleted)
  lrwx------ 1 root root 64 Jun 18 09:23 9 -> /mydata/ib_logfile0 (deleted)

3:添加鎖,使資料庫沒有寫入操作。
sql> flush tables with read lock;

4:輸入以下命令,讓髒頁儘快刷入到磁碟。
sql> set global innodb_max_dirty_pages_pct=0;

5:查看innodb狀態資訊,確認髒頁已經刷入磁碟,比對如下數值:

6:確認完後,就可以進行恢複操作了,把之前記錄的刪除檔案複製到原來目錄下。
# cd /proc/12147/fd 
# cp 10 /mydata/ib_logfile1
# cp 4 /mydata/ibdata1
# cp 9 /mydata/ib_logfile0

7:重啟mysqld服務既可。

本文永久更新連結地址:

相關文章

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.