萬盛學電腦網

 萬盛學電腦網 >> 數據庫 >> mysql教程 >> mysql中mysqlhotcopy熱備份例子

mysql中mysqlhotcopy熱備份例子

mysqlhotcopy命令比mysql自帶的mysqldump命令要強大一些,mysqlhotcopy是一個Perl腳本,最初由Tim Bunce編寫並提供。它使用LOCK TABLES、FLUSH TABLES和cp或scp來快速備份數據庫了,下面一起來看看mysqlhotcopy熱備份的一些例子

備份特點:

一個快速文件意義上的COPY,只能運行在數據庫目錄所在的機器上,在線執行LOCK TABLES 以及 UNLOCK TABLES,恢復時只需要COPY備份文件到源目錄覆蓋即可。

不足:備份時不能會鎖表,不能進行數據更新或插入,備份只能局限於本機。

使用前機器需具備perl 環境並安裝perl-DBD包

MYSQLHOTCOPY用法:

1)、mysqlhotcopy 原數據庫名,新數據庫名

2)、mysqlhotcopy 原數據庫名,備份的目錄

3)、也可以使用下面的腳本

#!/bin/sh

# Name:mysqlbackup.sh

# 定義腳本所在目錄

scriptsDir=`pwd`

# 數據庫的數據目錄

dataDir=/var/lib/mysql

# 數據備份目錄

tmpBackupDir=/tmp/mysqlblackup

backupDir=/backup/mysql

# 用來備份數據庫的用戶名和密碼

mysqlUser=root

mysqlPWD='you password'

# 如果臨時備份目錄存在,清空它,如果不存在則創建它

if [[ -e $tmpBackupDir ]]; then

rm -rf $tmpBackupDir/*

else

mkdir $tmpBackupDir

fi

# 如果備份目錄不存在則創建它

if [[ ! -e $backupDir ]];then

mkdir $backupDir

fi

# 得到數據庫備份列表,在此可以過濾不想備份的數據庫

for databases in `find $dataDir -type d |

sed -e "s//var/lib/mysql///" |

sed -e "s/test//"`; do

if [[ $databases == "" ]]; then

continue

else

# 備份數據庫

/usr/bin/mysqlhotcopy --user=$mysqlUser --password=$mysqlPWD -q "$databases" $tmpBackupDir

dateTime=`date "+%Y.%m.%d %H:%M:%S"`

echo "$dateTime Database:$databases backup success!" >>MySQLBackup.log

fi

done

# 壓縮備份文件

date=`date -I`

cd $tmpBackupDir

tar czf $backupDir/mysql-$date.tar.gz ./

#End完成

加入到crontab中設置每周5的2點19分運行

19 2 * * 5 /backup/blackup.sh

注意:恢復數據庫到備份時的狀態mysqlhotcopy 備份出來的是整個數據庫目錄,使用時可以直接拷貝到 mysqld 指定的 datadir (在這裡是 /var/lib/mysql/)目錄下即可,同時要注意權限的問題,如下例:

shell> cp -rf db_name /var/lib/mysql/

shell> chown -R mysql:mysql /var/lib/mysql/ (將 db_name 目錄的屬主改成 mysqld 運行用戶)

本套備份策略只能恢復數據庫到最後一次備份時的狀態,要想在崩潰時丟失的數據盡量少應該更頻繁的進行備份,要想恢復數據到崩潰時的狀態請使用主從復制機制(replication)。

小技巧:

不想寫密碼在shell中的話,可以在root的home目錄下建立一個.my.cnf文件,以便讓mysqlhotcopy從中讀取用戶名/密碼。

[mysqlhotcopy]

user=root

password=YourPassword

然後安全起見,chmod一下。

chmod 600 ~/.my.cnf

mysqlhotcopy從選項文件讀取[client]和[mysqlhotcopy]選項組。要想執行mysqlhotcopy,你必須可以訪問備份的表文件,具有那些表的SELECT權限和RELOAD權限(以便能夠執行FLUSH TABLES)。

mysql的自動備份與恢復(mysqlhotcopy)

建立數據庫備份所需條件

[1] 建立自動備份腳本

  在這裡,為了使數據庫備份和恢復的符合我們的實際要求,用一段符合要求的Shell腳本來實現整個備份過程的自動化。

[root@sample ~]# 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
我的測試系統是redhat linux as4 ,mysql版本:4.1.19,使用 以上腳本有一個提示是DBD包沒有安裝。

根據README中的提示進行安裝,如果在TAR包的MYSQL系統上安裝DBD::MYSQL,那麼在設置環境時應使用如上命令:

perl Makefile.PL \
        --libs="-L/usr/local/mysql-4.0.9/lib/mysql -lmysqlclient -lz" \
        --cflags=-I/usr/local/mysql-4.0.9/include/mysql \
        --testhost=127.0.0.1
接下來的命令沒有必要執行,還有可能報錯。
      make
      make test  # Some minor error messages can be ignored here
      make install
若還是不行的話,請跟著做:

此時將/usr/local/mysql/include/mysql/*復制到/usr/include/,同時將/usr/local/mysql/lib/mysql/*復制到/usr/lib/,然後使用perl Makefile.PL設置環境,再進行後續的正常安裝,就能正確連接到MYSQL數據庫。
[2] 運行數據庫自動備份腳本

[root@sample ~]# chmod 700 mysql-backup.sh  ← 改變腳本屬性,讓其只能讓root用戶執行

[root@sample ~]# ./mysql-backup.sh   ← 運行腳本

[root@sample ~]# 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@sample ~]# 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,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

  然後,運行剛才建立的數據庫備份腳本,備份剛剛建立的測試用的數據庫。

[root@sample ~]# cd ← 回到腳本所在的root用戶的根目錄

[root@sample ~]# ./mysql-backup.sh  ← 運行腳本進行數據庫備份

  接下來,我們再次登錄到MySQL服務器中,刪除剛剛建立的測試用的數據庫test,以便於測試數據恢復能否成功。

[root@sample ~]# 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@sample ~]# /bin/cp -Rf /backup/mysql/test/ /var/lib/mysql/  ← 復制備份的數據庫test到相應目錄

[root@sample ~]# chown -R mysql:mysql /var/lib/mysql/test/  ← 改變數據庫test的歸屬為mysql

[root@sample ~]# chmod 700 /var/lib/mysql/test/  ← 改變數據庫目錄屬性為700

[root@sample ~]# chmod 660 /var/lib/mysql/test/*  ← 改變數據庫中數據的屬性為660

  然後,再次登錄到MySQL服務器上,看是否已經成功恢復了數據庫。

[root@sample ~]# 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的相關信息。

[root@sample ~]# 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

  然後,我們再次運行數據庫備份腳本,將當前狀態的數據庫,再做一次備份。

[root@sample ~]# cd  ← 回到腳本所在的root用戶的根目錄

[root@sample ~]# ./mysql-backup.sh  ← 運行腳本進行數據庫備份

  接下來,我們再次登錄到MySQL服務器中,對測試用的數據庫test進行一些修改,以便於測試數據恢復能否成功。

[root@sample ~]# 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

  以上,我們就等於模擬了數據庫被篡改的過程。接下來,是數據庫被“篡改”後,用備份進行恢復的方法。

[root@sample ~]# /bin/cp -Rf /backup/mysql/test/ /var/lib/mysql/  ← 復制備份的數據庫test到相應目錄

  然後,再次登錄到MySQL服務器上,看數據庫是否被恢復到了被“篡改”之前的狀態。

[root@sample ~]# 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

  以上結果表示,數據庫被修改後,用備份後的數據庫成功的將數據恢復到了被“篡改”前的狀態。

測試後…

  測試完成後,將測試用過的遺留信息刪除。

[root@sample ~]# 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來備份數據庫的方法。

copyright © 萬盛學電腦網 all rights reserved