MySQL 主動備份與數據庫被損壞後的恢復辦法第1/2頁。本站提示廣大學習愛好者:(MySQL 主動備份與數據庫被損壞後的恢復辦法第1/2頁)文章只能為提供參考,不一定能成為您想要的結果。以下是MySQL 主動備份與數據庫被損壞後的恢復辦法第1/2頁正文
1、媒介:
當數據庫辦事器樹立好今後,我們起首要做的不是斟酌要在這個支撐數據庫的辦事器運轉哪些受MySQL扶攜提拔的法式,而是當數據庫遭到損壞後,如何安然恢復到最初一次正常的狀況,使得數據的喪失到達最小。
或許說,僅僅是數據庫辦事器的樹立,只能解釋它能做些甚麼,其實不代表它能穩固的做些甚麼。災害恢復的效力及周全性,也是體系的穩固性的一個准身分,特別關於一個辦事器體系。
這一節,引見數據庫主動備份和數據庫被損壞後的恢復的辦法。在這裡,我們應用mysqlhotcopy,而且界說一段Shell劇本來完成數據庫的主動備份,而且,讓全部數據主動備份與數據恢復進程都基於Shell。
樹立數據庫備份所需前提
[1] 樹立主動備份劇本
在這裡,為了使數據庫備份和恢復的相符我們的現實請求,用一段相符請求的Shell劇本來完成全部備份進程的主動化。
[root@CentOS ~]# vi mysql-backup.sh ← 樹立數據庫主動備份劇本,以下:
#!/bin/bash
PATH=/usr/local/sbin:/usr/bin:/bin
# The Directory of Backup
BACKDIR=/backup/mysql
# The Password of MySQL
ROOTPASS=******** 此處請將星號調換成MySQL的root暗碼
# Remake the Directory of Backup
rm -rf $BACKDIR
mkdir -p $BACKDIR
# Get the Name of Database
DBLIST=`ls -p /var/lib/mysql | grep / | tr -d /`
# Backup with Database
for dbname in $DBLIST
do
mysqlhotcopy $dbname -u root -p $ROOTPASS $BACKDIR | logger -t mysqlhotcopy
done
[2] 運轉數據庫主動備份劇本
[root@CentOS ~]# chmod 700 mysql-backup.sh 轉變劇本屬性,讓其只能讓root用戶履行
[root@CentOS ~]# ./mysql-backup.sh 運轉劇本
[root@CentOS ~]# ls -l /backup/mysql/ 確認一下能否備份勝利
total 8
drwxr-x--- 2 mysql mysql 4096 Sep 1 16:54 mysql 已勝利備份到/backup/mysql目次中
[3] 讓數據庫備份劇本天天主動運轉
[root@sample ~]# crontab -e ← 編纂主動運轉規矩(然後會湧現編纂窗口,操作同vi)
00 03 * * * /root/mysql-backup.sh 添加這一行到文件中,讓數據庫備份天天清晨3點停止
測試主動備份正常運轉與否(備份恢復的辦法)
這裡,以經由過程現實操作的進程來引見成績湧現後的恢復辦法。
[1] 當數據庫被刪除後的恢復辦法
起首樹立一個測試用的數據庫。
[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
以上成果表現,數據庫被刪除後,用備份後的數據庫勝利的將數據恢復到了刪除前的狀況。
以後1/2頁 12下一頁浏覽全文