關於MySQL啟動時,丟失資料檔案不報錯的現象

czxin788發表於2016-01-08

    最近,我做了一個實驗,就是想驗證mysql在丟失表資料檔案的情況下,資料庫是否能正常啟動,發現啟動正常。
    個人感覺mysql這麼做不太安全,因為管理員可能都不知道丟失資料檔案了。不過,還好,可以觀察錯誤日誌檔案來發現丟失資料檔案的資訊。所以,我們在啟動mysql的過程中,一定別忘了仔細觀察錯誤日誌檔案,以便及時發現資料庫潛在問題。

下面就是我的過程:
1、關閉MySQL資料庫
[root@drbd-01 db1]# service mysqld stop
Shutting down MySQL (Percona Server).......................[確定]...

2、刪除MySQL的一個資料檔案
[root@drbd-01 db1]# cd /data/mysql/data/db1
[root@drbd-01 db1]# mv t1.ibd t1.ibd.bak
[root@drbd-01 db1]# mv t1.frm t1.frm.bak
[root@drbd-01 db1]# ls
db.opt  t1.frm.bak  t1.ibd.bak

3、重新啟動MySQL
[root@drbd-01 db1]# service mysqld start
Starting MySQL (Percona Server)..............................................................  [確定]

在丟失資料檔案 t1.ibd的情況下,資料庫居然啟動起來了(這在oracle裡面簡直是不允許的)

4、驗證
(root@localhost)[(none)]> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| db1                |
| mysql              |
| performance_schema |
| test               |
+--------------------+
5 rows in set (0.17 sec)

(root@localhost)[(none)]> use db1;
Database changed
(root@localhost)[db1]> show tables;
Empty set (0.00 sec)

發現t1表果真不存在了。

(root@localhost)[db1]> create table t1 (id int);
ERROR 1813 (HY000): Tablespace for table '`db1`.`t1`' exists. Please DISCARD the tablespace before IMPORT.

又不讓建立t1表,好尷尬。


5、檢視錯誤日誌(還好錯誤日誌告訴我們資料檔案曾經存在但現在丟了

[root@drbd-01 db1]# tail -100 /data/mysql/logs/mysql-error.log 
InnoDB: directories yourself, InnoDB does not create them.
2016-01-08 16:43:12 10462 [ERROR] InnoDB: Could not find a valid tablespace file for 'db1/t1'. See http://dev.mysql.com/doc/refman/5.6/en/innodb-troubleshooting-datadict.html for how to resolve the issue.
2016-01-08 16:43:12 10462 [ERROR] InnoDB: Tablespace open failed for '"db1"."t1"', ignored.
2016-01-08 16:43:12 10462 [Note] InnoDB: 128 rollback segment(s) are active.
2016-01-08 16:43:12 10462 [Note] InnoDB:  Percona XtraDB () 5.6.27-76.0 started; log sequence number 1689915
2016-01-08 16:43:13 10462 [ERROR] InnoDB: Failed to find tablespace for table '"db1"."t1"' in the cache. Attempting to load the tablespace with space id 7.
2016-01-08 16:43:13 7f266daba700  InnoDB: Operating system error number 2 in a file operation.
InnoDB: The error means the system cannot find the path specified.
2016-01-08 16:43:13 10462 [ERROR] InnoDB: Could not find a valid tablespace file for 'db1/t1'. See http://dev.mysql.com/doc/refman/5.6/en/innodb-troubleshooting-datadict.html for how to resolve the issue.
2016-01-08 16:43:13 10462 [Note] Server hostname (bind-address): '*'; port: 3306
2016-01-08 16:43:13 10462 [Note] IPv6 is available.

6、結論
在MySQL資料庫啟動時,管理員別忘了仔細觀察你的錯誤日誌,以便及時發現問題。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28916011/viewspace-1973991/,如需轉載,請註明出處,否則將追究法律責任。

相關文章