MySQL自動備份及災難恢復
[轉自51cto]http://bbs.51cto.com/thread-820965-1.html
當資料庫伺服器建立好以後,我們首先要做的不是考慮要在這個支援資料庫的伺服器執行哪些受MySQL提攜的程式,而是當資料庫遭到破壞後,怎樣安然恢復到最後一次正常的狀態,使得資料的損失達到最小。
或者說,僅僅是資料庫伺服器的建立,只能說明它能做些什麼,並不代表它能穩定的做些什麼。災難恢復的效率及全面性,也是系統的穩定性的一個準因素,尤其對於一個伺服器系統。
這一節,介紹資料庫自動備份以及資料庫被破壞後的恢復的方法。在這裡,我們使用mysqlhotcopy,並且定義一段Shell指令碼來實現資料庫的自動備份,並且,讓整個資料自動備份與資料恢復過程都基於Shell。
建立資料庫備份所需條件
[1] 建立自動備份指令碼
在這裡,為了使資料庫備份和恢復的符合我們的實際要求,用一段符合要求的Shell指令碼來實現整個備份過程的自動化。
[[email protected] ~]# vi mysql-backup.sh ← 建立資料庫自動備份指令碼,如下:
#宣告SHELL 和執行路徑
#!/bin/bash
PATH=/usr/local/sbin:/usr/bin:/bin
# 設定備份的目錄
BACKDIR=/backup/mysql
# 設定ROOT的密碼
ROOTPASS=******** ← 將星號替換成MySQL的root密碼
# 重做備份目錄
rm -rf $BACKDIR
mkdir -p $BACKDIR
# 獲得資料庫名字
DBLIST=`ls -p /var/lib/mysql | grep / | tr -d /` #tr - translate or delete characters[ -d, --delete]
# 備份資料庫
for dbname in $DBLIST
do
mysqlhotcopy $dbname -u root -p $ROOTPASS $BACKDIR | logger -t mysqlhotcopy
done
[2] 執行資料庫自動備份指令碼
[[email protected] ~]# chmod 700 mysql-backup.sh ← 改變指令碼屬性,讓其只能讓root使用者執行
[[email protected] ~]# ./mysql-backup.sh ← 執行指令碼
[[email protected] ~]# ls -l /backup/mysql/ ← 確認一下是否備份成功
total 8
drwxr-x--- 2 mysql mysql 4096 Sep 1 16:54 mysql ← 已成功備份到/backup/mysql目錄中
[3] 讓資料庫備份指令碼每天自動執行
[[email protected] ~]# crontab -e ← 編輯自動執行規則(然後會出現編輯視窗,操作同vi)
00 03 * * * /root/mysql-backup.sh ← 新增這一行到檔案中,讓資料庫備份每天凌晨3點進行
測試自動備份正常運轉與否(備份恢復的方法)這裡,以通過實際操作的過程來介紹問題出現後的恢復方法。
[1] 當資料庫被刪除後的恢復方法
首先建立一個測試用的資料庫。
[[email protected] ~]# mysql -u root -p ← 用root登入到MySQL伺服器
Enter password: ← 輸入MySQL的root使用者密碼
#進入下面的BANNER
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 8 to server version: 4.1.20
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
#BANNER結束
mysql> create database test; ← 建立一個測試用的資料庫test
Query OK, 1 row affected (0.00 sec)
mysql> use test ← 連線到這個資料庫
Database changed
mysql> create table test(num int, name varchar(50)); ← 在資料庫中建立一個表
Query OK, 0 rows affected (0.07 sec)
mysql> insert into test values(1,'Hello,BSD'); ← 插入一個值到這個表(這裡以“Hello,BSD”為例)
Query OK, 1 row affected (0.02 sec)
mysql> select * from test; ← 檢視資料庫中的內容
+------+-------------+
| num | name |
+------+-------------+
|1 | Hello,BSD | ← 確認剛剛插入到表中的值的存在
+------+-------------+
1 row in set (0.01 sec)
mysql> exit ← 退出MySQL伺服器
Bye
然後,執行剛才建立的資料庫備份指令碼,備份剛剛建立的測試用的資料庫。
[[email protected] ~]# cd ← 回到指令碼所在的root使用者的根目錄
[[email protected] ~]# ./mysql-backup.sh ← 執行指令碼進行資料庫備份
接下來,我們再次登入到MySQL伺服器中,刪除剛剛建立的測試用的資料庫test,以便於測試資料恢復能否成功。
[[email protected] ~]# mysql -u root -p ← 用root登入到MySQL伺服器
Enter password: ← 輸入MySQL的root使用者密碼
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 13 to server version: 4.1.20
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> use test ← 連線到測試用的test資料庫
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> drop table test; ← 刪除資料中的表
Query OK, 0 rows affected (0.04 sec)
mysql> drop database test; ← 刪除測試用資料庫test
Query OK, 0 rows affected (0.01 sec)
mysql> show databases;
+-------------+
| Database |
+-------------+
| mysql | ← 確認測試用的test資料庫已不存在、已被刪除
+-------------+
1 row in set (0.01 sec)
mysql> exit ← 退出MySQL伺服器
Bye
以上,我們就等於模擬了資料庫被破壞的過程。接下來,是資料庫被“破壞”後,用備份進行恢復的方法。
[[email protected] ~]# /bin/cp -Rf /backup/mysql/test/ /var/lib/mysql/ ← 複製備份的資料庫test到相應目錄
[[email protected] ~]# chown -R mysql:mysql /var/lib/mysql/test/ ← 改變資料庫test的歸屬為mysql
[[email protected] ~]# chmod 700 /var/lib/mysql/test/ ← 改變資料庫目錄屬性為700
[[email protected] ~]# chmod 660 /var/lib/mysql/test/* ← 改變資料庫中資料的屬性為660
然後,再次登入到MySQL伺服器上,看是否已經成功恢復了資料庫。
[[email protected] ~]# mysql -u root -p ← 用root登入到MySQL伺服器
Enter password: ← 輸入MySQL的root使用者密碼
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 14 to server version: 4.1.20
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> show databases; ← 檢視當前存在的資料庫
+-------------+
| Database |
+-------------+
| mysql |
| test | ← 確認剛剛被刪除的test資料庫已經成功被恢復回來!
+------------+
2 rows in set (0.00 sec)
mysql> use test ← 連線到test資料庫
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> show tables; ← 檢視test資料庫中存在的表
+-------------------+
| Tables_in_test |
+-------------------+
| test |
+-------------------+
1 row in set (0.00 sec)
mysql> select * from test; ← 檢視資料庫中的內容
+------+--------------+
| num | name |
+------+--------------+
| 1 | Hello,BSD | ← 確認資料表中的內容與刪除前定義的“Hello,BSD”一樣!
+------+--------------+
1 row in set (0.01 sec)
mysql> exit ← 退出MySQL伺服器
Bye
以上結果表示,資料庫被刪除後,用備份後的資料庫成功的將資料恢復到了刪除前的狀態。
[2] 當資料庫被修改後的恢復方法
資料庫被修改,可能存在著多方面的原因,被入侵、以及相應程式存在Bug等等,這裡不作詳細介紹。這裡將只介紹在資料庫被修改後,如果恢復到被修改前狀態的方法。
具體和上面所述的“資料庫被刪除後的恢復方法”相類似。這裡,測試用資料庫接著使用剛剛在前面用過的test。這裡為了使剛剛接觸資料庫的朋友不至於理解混亂,我們再次登入到MySQL伺服器上確認一下剛剛建立的測試用的資料庫test的相關資訊。
[[email protected] ~]# mysql -u root -p ← 用root登入到MySQL伺服器
Enter password: ← 輸入MySQL的root使用者密碼
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 14 to server version: 4.1.20
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> show databases; ← 檢視當前存在的資料庫
+-------------+
| Database |
+-------------+
| mysql |
| test |
+------------+
2 rows in set (0.00 sec)
mysql> use test ← 連線到test資料庫
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> show tables; ← 檢視test資料庫中存在的表
+-------------------+
| Tables_in_test |
+-------------------+
| test |
+-------------------+
1 row in set (0.00 sec)
mysql> select * from test; ← 檢視資料庫中的內容
+------+--------------+
| num | name |
+------+--------------+
| 1 | Hello,BSD |
+------+--------------+
1 row in set (0.01 sec)
mysql> exit ← 退出MySQL伺服器
Bye
然後,我們再次執行資料庫備份指令碼,將當前狀態的資料庫,再做一次備份。
[[email protected] ~]# cd ← 回到指令碼所在的root使用者的根目錄
[[email protected] ~]# ./mysql-backup.sh ← 執行指令碼進行資料庫備份
接下來,我們再次登入到MySQL伺服器中,對測試用的資料庫test進行一些修改,以便於測試資料恢復能否成功。
[[email protected] ~]# mysql -u root -p ← 用root登入到MySQL伺服器
Enter password: ← 輸入MySQL的root使用者密碼
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 15 to server version: 4.1.20
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> use test ← 連線到test資料庫
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> update test set name='Shit,Windows'; ← 然後將test中表的值重新定義為“Shit,Windows”(原來為“Hello,BSD”)
Query OK, 1 row affected (0.07 sec)
Rows matched: 1 Changed: 1 Warnings: 0
mysql> select * from test; ← 確認test中的表被定義的值
+------+--------------------+
| num | name |
+------+-------------------+
| 1 | Shit,Windows | ← 確認已經將原test資料庫表中的值修改為新的值“Shit,Windows”
+------+-------------------+
1 row in set (0.00 sec)
mysql> exit ← 退出MySQL伺服器
Bye
以上,我們就等於模擬了資料庫被篡改的過程。接下來,是資料庫被“篡改”後,用備份進行恢復的方法。
[[email protected] ~]# /bin/cp -Rf /backup/mysql/test/ /var/lib/mysql/ ← 複製備份的資料庫test到相應目錄
然後,再次登入到MySQL伺服器上,看資料庫是否被恢復到了被“篡改”之前的狀態。
[[email protected] ~]# mysql -u root -p ← 用root登入到MySQL伺服器
Enter password: ← 輸入MySQL的root使用者密碼
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 16 to server version: 4.1.20
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> use test ← 連線到test資料庫
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> select * from test; ← 檢視資料庫中的內容
+------+----------------+
| num | name |
+------+----------------+
| 1 | Hello,BSD | ← 確認資料表中的內容與被修改前定義的“Hello,BSD”一樣!
+------+----------------+
1 row in set (0.01 sec)
mysql> exit ← 退出MySQL伺服器
Bye
以上結果表示,資料庫被修改後,用備份後的資料庫成功的將資料恢復到了被“篡改”前的狀態。
測試後…
測試完成後,將測試用過的遺留資訊刪除。
[[email protected] ~]# mysql -u root -p ← 用root登入到MySQL伺服器
Enter password: ← 輸入MySQL的root使用者密碼
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 19 to server version: 4.1.20
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> use test ← 連線到test資料庫
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> drop table test; ← 刪除test資料庫中的表
Query OK, 0 rows affected (0.01 sec)
mysql> drop database test; ← 刪除測試用資料庫test
Query OK, 0 rows affected (0.00 sec)
mysql> show databases; ← 檢視當前存在的資料庫
+-------------+
| Database |
+-------------+
| mysql | ← 確認測試用資料庫test不存在、已被刪除
+-------------+
1 row in set (0.00 sec)
mysql> exit ← 退出MySQL伺服器
Bye
以上介紹了用我們自己建立的一段Shell指令碼,通過mysqlhotcopy來備份資料庫的方法。
對於許多個人愛好者來說,組建伺服器可能不是很考慮資料被破壞以及資料被破壞後的恢復工作。但不能說,對於伺服器來說,資料破壞後的恢復效率也是區別業餘和專業的因素之一。所以筆者建議,在您配置好了Web伺服器以及MySQL伺服器等等的時候,千萬不要急於應用它,而要想辦法在有限的(硬體、軟體)條件下使它“堅不可摧”之後,再考慮應用的問題。
而且,以上介紹的方法中提到的資料庫自動備份指令碼雖然被設定為每天定時執行,但當您執行某些與MySQL相關聯的程式(論壇、社群等等)時,做一些可能危及資料安全的操作的時候,執行資料庫備份指令碼即時備份當前狀態資料庫,也是非常有幫助的,至少可以在出現問題後保證資料庫方面的可恢復性。