程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MYSQL入門知識 >> MySQL備份與恢復之percona-xtrabackup實現增量備份及恢復

MySQL備份與恢復之percona-xtrabackup實現增量備份及恢復

編輯:MYSQL入門知識
 

一 文章回顧

在上一篇文章,我們講到percona-xtrabackup軟件的使用,這一篇文章我們講解percona-xtrabackup實現增量備份及恢復。

二 增量備份示意圖

MySQL備份與恢復之percona-xtrabackup實現增量備份及恢復示意圖

三 percona-xtrabackup實現增量備份及恢復原理

首先,使用percona-xtrabackup工具對數據庫進行全備,然後再每次數據庫的數據更新後對數據進行增量備份,每次增量備份均在上一次備份的基礎上。恢復時依次把每次增量備份的數據恢復到全備中,最後使用合並的數據進行數據恢復。

四 percona-xtrabackup實現增量備份及恢復

第一步,全備。

innobackupex --user=root --password=123456 /databackup/

第二步,查看數據。

mysql> use larrydb;
Database changed
mysql> select * from class;
+------+-------+
| cid | cname |
+------+-------+
| 1 | linux |
| 2 | dab |
| 3 | Devel |
+------+-------+
3 rows in set (0.00 sec)

mysql> select * from stu;
+------+----------+------+
| sid | sname | cid |
+------+----------+------+
| 1 | larry007 | 1 |
+------+----------+------+
1 row in set (0.00 sec)

第三步,更新數據。

mysql> insert into stu values(2,'larry02',1);
Query OK, 1 row affected (0.00 sec)

mysql> select * from stu;
+------+----------+------+
| sid | sname | cid |
+------+----------+------+
| 1 | larry007 | 1 |
| 2 | larry02 | 1 |
+------+----------+------+
2 rows in set (0.00 sec)

第四步,增量備份,進行了全備和第一次增量備份,所以有兩個備份文件夾。我們每次增量備份都是針對上一次備份。

# --incremental:增量備份的文件夾
# --incremental-dir:針對哪個做增量備份
innobackupex --user=root --password=123456 \
--incremental /databackup/ \
--incremental-dir /databackup/2013-09-10_22-12-50/

InnoDB Backup Utility v1.5.1-xtrabackup; Copyright 2003, 2009 Innobase Oy
and Percona Inc 2009-2012. All Rights Reserved.
……
innobackupex: Backup created in directory '/databackup/2013-09-10_22-15-45'
innobackupex: MySQL binlog position: filename 'mysql-bin.000004', position 353
130910 22:16:04 innobackupex: completed OK!

ls
2013-09-10_22-12-50
2013-09-10_22-15-45

第五步,再次插入數據。

mysql> insert into stu values(3,'larry03',1);
Query OK, 1 row affected (0.00 sec)

mysql> select * from stu;
+------+----------+------+
| sid | sname | cid |
+------+----------+------+
| 1 | larry007 | 1 |
| 2 | larry02 | 1 |
| 3 | larry03 | 1 |
+------+----------+------+
3 rows in set (0.00 sec)

第六步,再次增量備份。

ls
2013-09-10_22-12-50
2013-09-10_22-15-45

innobackupex --user=root --password=123456 \
--incremental /databackup/ \
--incremental-dir /databackup/2013-09-10_22-15-45/

第七步,再次插入數據。

mysql> insert into stu values(4,'larry04',1);
Query OK, 1 row affected (0.00 sec)

mysql> select * from stu;
+------+----------+------+
| sid | sname | cid |
+------+----------+------+
| 1 | larry007 | 1 |
| 2 | larry02 | 1 |
| 3 | larry03 | 1 |
| 4 | larry04 | 1 |
+------+----------+------+
4 rows in set (0.00 sec)

第八步,再次增量備份。一次全備,三次增量備份,所以有四個備份文件夾。

innobackupex --user=root --password=123456 \
--incremental /databackup/ \
--incremental-dir /databackup/2013-09-10_22-19-21/

ls
2013-09-10_22-12-50
2013-09-10_22-15-45
2013-09-10_22-19-21
2013-09-10_22-21-42

第九步,模擬數據丟失。

mysql> drop database larrydb;
Query OK, 2 rows affected (0.02 sec)

第十步,對全部的數據進行檢查。可以看到增量備份和全備的文件占用磁盤大小有很大的差別,顯然全備占用磁盤空間多,增量備份占用磁盤空間少。

innobackupex --apply-log --redo-only /databackup/2013-09-10_22-12-50/

InnoDB Backup Utility v1.5.1-xtrabackup; Copyright 2003, 2009 Innobase Oy
and Percona Inc 2009-2012. All Rights Reserved.
……
xtrabackup: starting shutdown with innodb_fast_shutdown = 1
130910 22:23:35 InnoDB: Starting shutdown...
130910 22:23:36 InnoDB: Shutdown completed; log sequence number 2098700
130910 22:23:36 innobackupex: completed OK!

du -sh ./*
22M ./2013-09-10_22-12-50
1.5M ./2013-09-10_22-15-45
1.5M ./2013-09-10_22-19-21
1.5M ./2013-09-10_22-21-42

第十一步,對第一次做的增量備份數據進行合並到全備份中去。

innobackupex --apply-log --redo-only \
--incremental /databackup/2013-09-10_22-12-50/ \
--incremental-dir=/databackup/2013-09-10_22-15-45/

InnoDB Backup Utility v1.5.1-xtrabackup; Copyright 2003, 2009 Innobase Oy
and Percona Inc 2009-2012. All Rights Reserved.
……
innobackupex: Copying '/databackup/2013-09-10_22-15-45/hello/db.opt' to
'/databackup/2013-09-10_22-12-50/hello/db.opt'
130910 22:32:26 innobackupex: completed OK!

第十二步,對第二次做的增量備份數據進行合並到全備份中去

innobackupex --apply-log --redo-only \
--incremental /databackup/2013-09-10_22-12-50/ \
--incremental-dir=/databackup/2013-09-10_22-19-21/

第十三步,對第三次做的增量備份數據進行合並到全備份中去

innobackupex --apply-log --redo-only \
--incremental /databackup/2013-09-10_22-12-50/ \
--incremental-dir=/databackup/2013-09-10_22-21-42/

第十四步,恢復時需要停掉MySQL,所以我們停掉MySQL

/etc/init.d/mysqld stop
ERROR! MySQL server PID file could not be found!

pkill -9 mysql

第十五步,恢復數據。注意這裡指定的文件夾是2013-09-10_22-12-50。

innobackupex --copy-back /databackup/2013-09-10_22-12-50/

InnoDB Backup Utility v1.5.1-xtrabackup; Copyright 2003, 2009 Innobase Oy
and Percona Inc 2009-2012. All Rights Reserved.

This software is published under
the GNU GENERAL PUBLIC LICENSE Version 2, June 1991.

IMPORTANT: Please check that the copy-back run completes successfully.
At the end of a successful copy-back run innobackupex
prints "completed OK!".

Original data directory is not empty! at /usr/bin/innobackupex line 571.

報以上錯需要刪除數據目錄下的東西。

pwd
/usr/local/mysql/data

ls
rm -rf *

再次恢復數據,並更改數據庫數據目錄的擁有者和所屬組。

innobackupex --copy-back /databackup/2013-09-10_22-12-50/

ll
chown mysql.mysql /usr/local/mysql/data/ -R

第十六步,啟動服務。

/etc/init.d/mysqld start
Starting MySQL.. SUCCESS!

第十七步,登錄數據庫,然後查看數據。

mysql -uroot -p123456
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| game |
| hello |
| larrydb |
| mnt |
| mysql |
| performance_schema |
| test |
+--------------------+
8 rows in set (0.00 sec)

mysql> select * from larrydb.class;
+------+-------+
| cid | cname |
+------+-------+
| 1 | linux |
| 2 | dab |
| 3 | Devel |
+------+-------+
3 rows in set (0.00 sec)

mysql> select * from larrydb.stu;
+------+----------+------+
| sid | sname | cid |
+------+----------+------+
| 1 | larry007 | 1 |
| 2 | larry02 | 1 |
| 3 | larry03 | 1 |
| 4 | larry04 | 1 |
+------+----------+------+
4 rows in set (0.00 sec)

–EOF–

 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved