當數據庫被刪除後的恢復方法:
一、首先建立一個測試用的數據庫。
[root@CentOS ~]# 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 8 to server version: 4.1.20
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
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,CentOS'); ← 插入一個值到這個表這裡以“Hello,CentOS”為例)
Query OK, 1 row affected (0.02 sec)
mysql> select * from test; ← 查看數據庫中的內容
+------+-----------------+
| num | name |
+------+-----------------+
|1 | Hello,Centos | ← 確認剛剛插入到表中的值的存在
+------+------------------+
1 row in set (0.01 sec)
mysql> exit ← 退出MySQL服務器
Bye
二、然後,運行剛才建立的數據庫備份腳本,備份剛剛建立的測試用的數據庫。
[root@sample ~]# cd ← 回到腳本所在的root用戶的根目錄
[root@sample ~]# ./mysql-backup.sh ← 運行腳本進行數據庫備份
三、接下來,我們再次登錄到MySQL服務器中,刪除剛剛建立的測試用的數據庫test,以便於測試數據恢復能否成功。
[root@Centos ~]# 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
以上,我們就等於模擬了數據庫被破壞的過程。接下來,是數據庫被“破壞”後,用備份進行恢復的方法。
[root@Centos ~]# /bin/cp -Rf /backup/mysql/test/ /var/lib/mysql/ ← 復制備份的數據庫test到相應目錄
[root@Centos ~]# chown -R mysql:mysql /var/lib/mysql/test/ ← 改變數據庫test的歸屬為mysql
[root@Centos ~]# chmod 700 /var/lib/mysql/test/ ← 改變數據庫目錄屬性為700
[root@Centos ~]# chmod 660 /var/lib/mysql/test/* ← 改變數據庫中數據的屬性為660
然後,再次登錄到MySQL服務器上,看是否已經成功恢復了數據庫。
[root@CentOS ~]# 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,CentOS | ← 確認數據表中的內容與刪除前定義的“Hello,CentOS”一樣!
+------+---------------------+
1 row in set (0.01 sec)
mysql> exit ← 退出MySQL服務器
Bye
以上結果表示,數據庫被刪除後,用備份後的數據庫成功的將數據恢復到了刪除前的狀態。