mysql利用binlog增量備份,還原例項
一什麼是增量備份
增量備份,就是將新增加的資料進行備份。假如你一個資料庫,有10G的資料,每天會增加10M的資料,資料庫每天都要備份一次,這麼多資料是不是都要備份呢?還是隻要備份增加的資料呢,很顯然,我只要備份增加的資料。這樣減少伺服器的負擔。
二,啟用binlog
vi my.cnf
log-bin=/var/lib/mysql/mysql-bin.log,如果是這樣的話log-bin=mysql-bin.log預設在datadir目錄下面
[root@BlackGhost mysql]# ls |grep mysql-bin
mysql-bin.000001
mysql-bin.000002
mysql-bin.000003
mysql-bin.000004
mysql-bin.000005
mysql-bin.000006
mysql-bin.index
啟動後會產生mysql-bin這樣的檔案,每啟動一次,就會增加一個或者多個。
mysql-bin.000002這樣檔案存放的是資料庫每天增加的資料,所有資料庫的資料增量都在這裡面。
三,檢視mysql-bin.000002這樣的檔案裡面到底是什麼東西
[root@BlackGhost mysql]# mysqlbinlog /var/lib/mysql/mysql-bin.000002 > /tmp/add.sql
檢視複製列印?
[root@BlackGhost mysql]# cat /tmp/add.sql // 下面是根據mysql-bin生成的檔案(部分內容)
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
DELIMITER /*!*/;
# at 4
#100929 21:23:52 server id 1 end_log_pos 106 Start: binlog v 4, server v 5.1.50-log created 100929 21:23:52 at startup
# Warning: this binlog was not closed properly. Most probably mysqld crashed writing it.
ROLLBACK/*!*/;
BINLOG `
6D2jTA8BAAAAZgAAAGoAAAABAAQANS4xLjUwLWxvZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAADoPaNMEzgNAAgAEgAEBAQEEgAAUwAEGggAAAAICAgC
`/*!*/;
# at 106
#100929 21:29:35 server id 1 end_log_pos 134 Intvar
SET INSERT_ID=16/*!*/;
# at 134
#100929 21:29:35 server id 1 end_log_pos 237 Query thread_id=1 exec_time=0 error_code=0
use test/*!*/; //這裡是test資料庫
SET TIMESTAMP=1285766975/*!*/;
SET @@session.pseudo_thread_id=1/*!*/;
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1/*!*/;
SET @@session.sql_mode=0/*!*/;
SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
/*!C utf8 *//*!*/;
SET @@session.character_set_client=33,@@session.collation_connection=33,@@session.collation_server=33/*!*/;
SET @@session.lc_time_names=0/*!*/;
SET @@session.collation_database=DEFAULT/*!*/;
insert into aa(name)values(`cccccccccc`)
/*!*/;
# at 237
#100929 21:32:21 server id 1 end_log_pos 265 Intvar
SET INSERT_ID=12/*!*/;
# at 265
#100929 21:32:21 server id 1 end_log_pos 370 Query thread_id=1 exec_time=0 error_code=0
SET TIMESTAMP=1285767141/*!*/;
insert into user(name)values(`cccccccccc`)
/*!*/;
# at 370
#100929 21:35:25 server id 1 end_log_pos 440 Query thread_id=1 exec_time=0 error_code=0
SET TIMESTAMP=1285767325/*!*/;
BEGIN
/*!*/;
# at 440
#100929 21:35:25 server id 1 end_log_pos 468 Intvar
SET INSERT_ID=45/*!*/;
# at 468
#100929 21:35:25 server id 1 end_log_pos 573 Query thread_id=1 exec_time=0 error_code=0
use blog/*!*/; //這裡是blog資料庫
SET TIMESTAMP=1285767325/*!*/;
insert into city(CityName)values(`asdf`)
/*!*/;
# at 573
#100929 21:35:25 server id 1 end_log_pos 600 Xid = 205
COMMIT/*!*/;
DELIMITER ;
# End of log file
ROLLBACK /* added by mysqlbinlog */;
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
下面還有一個重要索引檔案就是mysql-bin.index
[root@BlackGhost mysql]# cat mysql-bin.index
./mysql-bin.000001
./mysql-bin.000002
./mysql-bin.000003
./mysql-bin.000004
./mysql-bin.000005
./mysql-bin.000006
四,增量備份和增量還原
1,增量備份
既然我們知道了,mysql裡面新增加的資料在mysql-bin這樣的檔案裡面,我們只要把mysql-bin這樣的檔案進行備份就可以了。
cp /var/lib/mysql/mysql-bin* /data/mysql_newbak/
2,增量還原,講幾個常用的,比較有用的
a),根據時間來還原 –start-date,–stop-date
[root@BlackGhost mysql]# /usr/local/mysql/bin/mysqlbinlog –start-date=”2010-09-29 18:00:00″ –stop-date=”2010-09-29 23:00:00″ /var/lib/mysql/mysql-bin.000002 |mysql -u root -p
根據條件看一下資料
檢視複製列印?
[root@BlackGhost mysql]# /usr/local/mysql/bin/mysqlbinlog –start-date=”2010-09-29 18:00:00″
–stop-date=”2010-09-29 23:00:00″ /var/lib/mysql/mysql-bin.000002
//下面是部分內容,其實也就是一些對資料進行操作的sql語句
# at 237
#100929 21:32:21 server id 1 end_log_pos 265 Intvar
SET INSERT_ID=12/*!*/;
# at 265
#100929 21:32:21 server id 1 end_log_pos 370 Query thread_id=1 exec_time=0 error_code=0
SET TIMESTAMP=1285767141/*!*/;
insert into user(name)values(`cccccccccc`)
/*!*/;
# at 370
#100929 21:35:25 server id 1 end_log_pos 440 Query thread_id=1 exec_time=0 error_code=0
SET TIMESTAMP=1285767325/*!*/;
BEGIN
/*!*/;
# at 440
#100929 21:35:25 server id 1 end_log_pos 468 Intvar
SET INSERT_ID=45/*!*/;
# at 468
#100929 21:35:25 server id 1 end_log_pos 573 Query thread_id=1 exec_time=0 error_code=0
b),根據起始位置來還原,–start-position,–stop-position
[root@BlackGhost mysql]# /usr/local/mysql/bin/mysqlbinlog –start-position=370 –stop-position=440 /var/lib/mysql/mysql-bin.000002 |mysql -u root -p
//檢視插入的內容,根a)中是一樣的
[root@BlackGhost mysql]# /usr/local/mysql/bin/mysqlbinlog –start-position=370 –stop-position=440 /var/lib/mysql/mysql-bin.000002
–start-position=370 –stop-position=440 這裡面數字從哪兒來的呢?
# at 370
#100929 21:35:25 server id 1 end_log_pos 440 Query thread_id=1 exec_time=0 error_code=0
SET TIMESTAMP=1285767325/*!*/;
上面的紅色加粗的就是,一個是start-position,一個是stop-position
c),根據資料庫名來進行還原 -d
在這裡是小寫的d,請不要把它和mysqldump中的-D搞混了。哈哈。
[root@BlackGhost mysql]# /usr/local/mysql/bin/mysqlbinlog -d test /var/lib/mysql/mysql-bin.000002
檢視內容,請參考a)
d),根據資料庫所在IP來分-h
[root@BlackGhost mysql]# /usr/local/mysql/bin/mysqlbinlog -h 192.1681.102 /var/lib/mysql/mysql-bin.000002
檢視內容,請參考a)
e),根據資料庫所佔用的埠來分-P
有的時候,我們的mysql用的不一定是3306埠,注意是大寫的P
[root@BlackGhost mysql]# /usr/local/mysql/bin/mysqlbinlog -p 13306 /var/lib/mysql/mysql-bin.000002
檢視內容,請參考a)
f),根據資料庫serverid來還原–server-id
在資料庫的配置檔案中,都有一個serverid並且同一叢集中serverid是不能相同的。
[root@BlackGhost mysql]# /usr/local/mysql/bin/mysqlbinlog –server-id=1 /var/lib/mysql/mysql-bin.000002
檢視內容,請參考a)
注意:上面的幾個例子,我都是一個一個說的,其實可以排列組合的。例如
[root@BlackGhost mysql]# /usr/local/mysql/bin/mysqlbinlog –start-position=”2010-09-29 18:00:00″ -d test -h 127.0.0.1 /var/lib/mysql/mysql-bin.000002 |mysql -u root -p
五,後續
增量備份的時候,有一點讓人不爽,就是mysql-bin這樣的檔案,每啟動一次mysql就會增加一些,如果你不去管他的話,時間長了,他會把你的磁碟佔滿。
./mysqldump –flush-logs -u root myblog > /tmp/myblog.sql
備份myblog資料庫,清除增量備份裡面的有關myblog的資料
./mysqldump –flush-logs -u root –all-databases > /tmp/alldatabase.sql
備份所有資料庫,清除增量備份
mysql-bin.index的起索引作用,因為增量的資料不一定在一個mysql-bin000這樣的檔案裡面,這個時候,我們就要根據mysql-bin.index來找mysql-bin這樣的增量檔案了。
如果mysql裡面做了這樣的配置binlog-do-db=test1,增量備份裡面只會有test1這個資料庫的資料
總結:
1、根據位置postid 來增量還原比較使用(常用)(推薦)
2、根據起止時間來增量還原一般常用。
3、還原是基於語句的還原,一定要看清postid的起止號 通常是at 開頭,#號結尾。
參考:
http://blog.51yip.com/mysql/1042.html
http://cwtea.blog.51cto.com/4500217/1259509
http://blog.csdn.net/u010098331/article/details/50931719
相關文章
- mysql備份還原-基於binlog的增量備份還原MySql
- mysql 利用binlog增量備份、恢復MySql
- MySQL增量備份與恢復例項MySql
- HBase 增量備份和還原工具
- mysql備份還原MySql
- 透過innobackupex實現對MySQL的增量備份與還原MySql
- Mysql增量備份MySql
- mysql 備份與還原MySql
- MySQL備份和還原MySql
- 使用RMAN增量更新備份實現快速還原
- MySQL之備份和還原MySql
- 東商專案mysql例項庫(dingding)增量備份的實現MySql
- 基於percona xtrabackup 2.4.14的增量備份恢復還原mysql 5.6MySql
- Mysql資料備份和還原MySql
- MySQL 定時增量備份MySql
- Backup And Recovery User's Guide-建立和更新增量備份-增量更新備份:高階例項GUIIDE
- 【RMAN】利用備份片還原資料庫資料庫
- 「MySQL」資料庫備份和還原MySql資料庫
- 【Mysql】innobackupex備份還原單個庫MySql
- MySQL的資料備份與還原MySql
- MySQL資料庫備份與還原MySql資料庫
- mysql innobackupex增量備份恢復MySql
- 【MySql】innobackupex 增量備份的bugMySql
- 【RMAN】利用備份片還原資料庫(上)資料庫
- 【RMAN】利用備份片還原資料庫(中)資料庫
- 【RMAN】利用備份片還原資料庫(下)資料庫
- MySQL 利用xtrabackup進行增量備份詳細過程彙總MySql
- Mysql備份和還原資料庫-mysqldumpMySql資料庫
- mysql innobackupex xtrabackup 大資料量 備份 還原MySql大資料
- Linux下MySQL的備份與還原LinuxMySql
- 【MySql】innobackupex增量備份和恢復MySql
- MySQL增量備份的指令碼(innobackupex)MySql指令碼
- 【MySql】innobackupex 增量備份和恢復MySql
- 【RMAN】利用備份片還原資料庫(中)-附加資料庫
- mysql之 Innobackupex(全備+增量)備份恢復MySql
- 使用innobackupex線上增量備份和再增量備份及恢復mysql資料庫MySql資料庫
- MySQL中binlog備份指令碼分享MySql指令碼
- 實時備份mysql binlog日誌MySql