濮阳杆衣贸易有限公司

主頁 > 知識庫 > Mysql實(shí)現(xiàn)增量恢復(fù)的方法詳解

Mysql實(shí)現(xiàn)增量恢復(fù)的方法詳解

熱門標(biāo)簽:商家地圖標(biāo)注哪個(gè)好 深圳 外呼系統(tǒng)從哪買 陜西400電話如何申請 遵義地圖標(biāo)注app 承德電腦地圖標(biāo)注 德惠市地圖標(biāo)注 合肥營銷外呼系統(tǒng)收費(fèi) 地圖標(biāo)注賺錢真假

實(shí)驗(yàn)介紹

增量恢復(fù)一般適用的場景:

1、人為的sql語句破壞了數(shù)據(jù)庫

2、在進(jìn)行下一次完全備份之前發(fā)生系統(tǒng)故障導(dǎo)致數(shù)據(jù)庫數(shù)據(jù)丟失

3、在主從架構(gòu)中,主庫數(shù)據(jù)發(fā)生了故障

丟失完全備份之后更改的數(shù)據(jù)的恢復(fù)步驟

1、首先做一個(gè)完全備份,確保生成完全備份的sql文件。

mysql> select * from yx;  #完全備份前數(shù)據(jù)庫
+----------+--------+
| name   | score |
+----------+--------+
| zhangsan | 100.00 |
| lisi   | 90.00 |
| wangwu  | 80.00 |
| zhaoliu | 99.00 |
+----------+--------+
4 rows in set (0.00 sec)
[root@promote data]# mysqldump -u root -p test > /opt/test.sql  #對數(shù)據(jù)庫完全備份

2、使用flush-logs生成新的二進(jìn)制日志文件,用以保存之后的數(shù)據(jù)庫操作語句。

[root@promote data]# mysqladmin -u root -p flush-logs  #生成二進(jìn)制文件
Enter password:
[root@promote data]# ls
auto.cnf        ibdata1      ib_logfile1  mysql             mysql-bin.index     sys
ib_buffer_pool  ib_logfile0  ibtmp1       mysql-bin.000001  performance_schema  test

3、在數(shù)據(jù)庫中插入一條記錄,再執(zhí)行flush-logs操作,生成新的二進(jìn)制增量備份文件。

mysql> insert into yx(name,score) values('tom',87);
Query OK, 1 row affected (0.00 sec)

mysql> select * from yx;
+----------+--------+
| name     | score  |
+----------+--------+
| zhangsan | 100.00 |
| lisi     |  90.00 |
| wangwu   |  80.00 |
| zhaoliu  |  99.00 |
| tom      |  87.00 |
+----------+--------+
5 rows in set (0.00 sec)
[root@promote data]# mysqladmin -u root -p flush-logs  #生成二進(jìn)制文件
Enter password:
[root@promote data]# ls
auto.cnf        ibdata1      ib_logfile1  mysql             mysql-bin.000002  performance_schema  test
ib_buffer_pool  ib_logfile0  ibtmp1       mysql-bin.000001  mysql-bin.index   sys

4、用delete刪除剛才插入的數(shù)據(jù)。模擬完全備份后數(shù)據(jù)丟失。

mysql> delete from yx where name='tom';
Query OK, 1 row affected (0.00 sec)

mysql> select * from yx;
+----------+--------+
| name     | score  |
+----------+--------+
| zhangsan | 100.00 |
| lisi     |  90.00 |
| wangwu   |  80.00 |
| zhaoliu  |  99.00 |
+----------+--------+
4 rows in set (0.00 sec)

5、使用二進(jìn)制文件進(jìn)行恢復(fù)操作

[root@promote data]# mysqlbinlog --no-defaults mysql-bin.000001 | mysql -u root -p

6、查看數(shù)據(jù)庫內(nèi)容,刪除的數(shù)據(jù)有了。說明數(shù)據(jù)恢復(fù)成功。

mysql> select * from yx;
+----------+--------+
| name     | score  |
+----------+--------+
| zhangsan | 100.00 |
| lisi     |  90.00 |
| wangwu   |  80.00 |
| zhaoliu  |  99.00 |
| tom      |  87.00 |
+----------+--------+
5 rows in set (0.00 sec)

完全備份之后丟失所有數(shù)據(jù)的恢復(fù)步驟

1、使用drop刪除表yx,模擬數(shù)據(jù)完全丟失

mysql> drop table yx;
Query OK, 0 rows affected (0.01 sec)

mysql> show tables;
Empty set (0.00 sec)

2、先使用mysql命令進(jìn)行完全備份恢復(fù)操作。

[root@promote data]# mysql -u root -p test /opt/test.sql
mysql> use test;
Database changed
mysql> select * from yx;
+----------+--------+
| name     | score  |
+----------+--------+
| zhangsan | 100.00 |
| lisi     |  90.00 |
| wangwu   |  80.00 |
| zhaoliu  |  99.00 |
+----------+--------+
4 rows in set (0.00 sec)

3、使用二進(jìn)制文件進(jìn)行增量備份操作。

[root@promote data]# mysqlbinlog --no-defaults mysql-bin.000001 | mysql -u root -p
mysql> select * from yx;
+----------+--------+
| name     | score  |
+----------+--------+
| zhangsan | 100.00 |
| lisi     |  90.00 |
| wangwu   |  80.00 |
| zhaoliu  |  99.00 |
| tom      |  87.00 |
+----------+--------+
5 rows in set (0.00 sec)

基于時(shí)間點(diǎn)與位置的恢復(fù)

利用二進(jìn)制日志實(shí)現(xiàn)局域時(shí)間點(diǎn)與位置的恢復(fù),假如需要往數(shù)據(jù)庫中插入兩條數(shù)據(jù),但是由于誤操作,兩條插入語句中間刪除一條數(shù)據(jù),而這條數(shù)據(jù)不應(yīng)該刪除,這時(shí)候,需要基于時(shí)間點(diǎn)與位置進(jìn)行恢復(fù)。

–start-datetime=datetime

從二進(jìn)制日志中第1個(gè)日期時(shí)間等于或晚于datetime參量的事件開始讀。

–stop-datetime=datetime
從二進(jìn)制日志中第1個(gè)日期時(shí)間等于或晚于datetime參量的事件起停止讀。

–start-position=N
從二進(jìn)制日志中第1個(gè)位置等于N參量時(shí)的事件開始讀。

–stop-position=N
從二進(jìn)制日志中第1個(gè)位置等于和大于N參量時(shí)的事件起停止讀。

mysql> select * from yx;
+----------+--------+
| name     | score  |
+----------+--------+
| zhangsan | 100.00 |
| lisi     |  90.00 |
| wangwu   |  80.00 |
| zhaoliu  |  99.00 |
+----------+--------+
5 rows in set (0.00 sec)

mysql> insert into yx values('test01',87);
Query OK, 1 row affected (0.00 sec)

mysql> delete from yx where name='zhangsan';
Query OK, 1 row affected (0.00 sec)

mysql> insert into yx values('test02',99);
Query OK, 1 row affected (0.17 sec)

mysql> select * from yx;
+---------+-------+
| name    | score |
+---------+-------+
| lisi    | 90.00 |
| wangwu  | 80.00 |
| zhaoliu | 99.00 |
| test01  | 87.00 |
| test02  | 99.00 |
+---------+-------+
6 rows in set (0.00 sec)

1、基于時(shí)間點(diǎn)的恢復(fù)。18-07-03 21:56:04是錯誤語句節(jié)點(diǎn),18-07-03 21:56:11第二句正確語句節(jié)點(diǎn)

[root@promote data]# mysqlbinlog --no-defaults --base64-output=decode-rows mysql-bin.000003
# at 298
#180703 21:55:35 server id 1  end_log_pos 406 CRC32 0x257c67ab  Query   thread_id=46    exec_time=0 error_code=0
use `test`/*!*/;
SET TIMESTAMP=1530626135/*!*/;
insert into yx values('test01',87)
/*!*/;
# at 406
#180703 21:55:35 server id 1  end_log_pos 437 CRC32 0xdd7913a3  Xid = 392
COMMIT/*!*/;
# at 437
#180703 21:56:04 server id 1  end_log_pos 502 CRC32 0x0d09bd0b  Anonymous_GTID  last_committed=1    sequence_number=2
SET @@SESSION.GTID_NEXT= 'ANONYMOUS'/*!*/;
# at 502
#180703 21:56:04 server id 1  end_log_pos 581 CRC32 0xe6040c79  Query   thread_id=46    exec_time=0 error_code=0
SET TIMESTAMP=1530626164/*!*/;
BEGIN
/*!*/;
# at 581
#180703 21:56:04 server id 1  end_log_pos 691 CRC32 0x2d99f699  Query   thread_id=46    exec_time=0 error_code=0
SET TIMESTAMP=1530626164/*!*/;
delete from yx where name='zhangsan'
/*!*/;
# at 691
#180703 21:56:04 server id 1  end_log_pos 722 CRC32 0x4a742173  Xid = 393
COMMIT/*!*/;
# at 722
#180703 21:56:11 server id 1  end_log_pos 787 CRC32 0x6d0b47d8  Anonymous_GTID  last_committed=2    sequence_number=3
SET @@SESSION.GTID_NEXT= 'ANONYMOUS'/*!*/;
# at 787
#180703 21:56:11 server id 1  end_log_pos 866 CRC32 0x97e2deb7  Query   thread_id=46    exec_time=0 error_code=0
SET TIMESTAMP=1530626171/*!*/;
BEGIN
/*!*/;
# at 866
#180703 21:56:11 server id 1  end_log_pos 974 CRC32 0x9e24e8af  Query   thread_id=46    exec_time=0 error_code=0
SET TIMESTAMP=1530626171/*!*/;
insert into yx values('test02',99)
[root@promote data]# mysql -u root -p test /opt/test.sql   #先進(jìn)行完全恢復(fù)
mysql> select * from yx;
+----------+--------+
| name     | score  |
+----------+--------+
| zhangsan | 100.00 |
| lisi     |  90.00 |
| wangwu   |  80.00 |
| zhaoliu  |  99.00 |
+----------+--------+
4 rows in set (0.00 sec)
[root@promote data]# mysqlbinlog --no-defaults --stop-datetime='18-07-03 21:56:04' mysql-bin.000003 | mysql -u root -p   #結(jié)束節(jié)點(diǎn)
Enter password:
[root@promote data]# mysqlbinlog --no-defaults --start-datetime='18-07-03 21:56:11' mysql-bin.000003 | mysql -u root -p   #重新開始節(jié)點(diǎn)
Enter password:
mysql> select * from yx;
+----------+--------+
| name     | score  |
+----------+--------+
| zhangsan | 100.00 |
| lisi     |  90.00 |
| wangwu   |  80.00 |
| zhaoliu  |  99.00 |
| test01   |  87.00 |
| test02   |  99.00 |
+----------+--------+
6 rows in set (0.00 sec)

2、基于位置恢復(fù),其中581是錯誤語句的節(jié)點(diǎn),866是第二句正確語句的節(jié)點(diǎn)

[root@promote data]# mysql -u root -p test /opt/test.sql
mysql> select * from yx;
+----------+--------+
| name     | score  |
+----------+--------+
| zhangsan | 100.00 |
| lisi     |  90.00 |
| wangwu   |  80.00 |
| zhaoliu  |  99.00 |
+----------+--------+
4 rows in set (0.01 sec)
[root@promote data]# mysqlbinlog --no-defaults --stop-position='581' mysql-bin.000003 | mysql -u root -p
Enter password:
[root@promote data]# mysqlbinlog --no-defaults --start-position='866' mysql-bin.000003 | mysql -u root -p
Enter password:
mysql> select * from yx;
+----------+--------+
| name     | score  |
+----------+--------+
| zhangsan | 100.00 |
| lisi     |  90.00 |
| wangwu   |  80.00 |
| zhaoliu  |  99.00 |
| test01   |  87.00 |
| test02   |  99.00 |
+----------+--------+
6 rows in set (0.00 sec)

您可能感興趣的文章:
  • MySQL數(shù)據(jù)庫備份與恢復(fù)方法
  • MySQL忘記密碼恢復(fù)密碼的實(shí)現(xiàn)方法
  • 用mysqldump備份和恢復(fù)指定表的方法
  • MySQL數(shù)據(jù)庫恢復(fù)(使用mysqlbinlog命令)
  • 詳解Mysql自動備份與恢復(fù)的幾種方法(圖文教程)
  • mysql 誤刪除ibdata1之后的恢復(fù)方法
  • MYSQL使用.frm恢復(fù)數(shù)據(jù)表結(jié)構(gòu)的實(shí)現(xiàn)方法
  • Linux下實(shí)現(xiàn)MySQL數(shù)據(jù)備份和恢復(fù)的命令使用全攻略
  • MySQL單表ibd文件恢復(fù)方法詳解

標(biāo)簽:貴州 新余 三門峽 巴中 商丘 南陽 贛州 揚(yáng)州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Mysql實(shí)現(xiàn)增量恢復(fù)的方法詳解》,本文關(guān)鍵詞  Mysql,實(shí)現(xiàn),增量,恢復(fù),的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Mysql實(shí)現(xiàn)增量恢復(fù)的方法詳解》相關(guān)的同類信息!
  • 本頁收集關(guān)于Mysql實(shí)現(xiàn)增量恢復(fù)的方法詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    中西区| 南城县| 健康| 建湖县| 垦利县| 寿宁县| 延津县| 无棣县| 夏邑县| 上蔡县| 酒泉市| 平塘县| 勃利县| 金川县| 台湾省| 松阳县| 华容县| 丰台区| 闸北区| 孟津县| 西昌市| 和田市| 景洪市| 搜索| 巴林右旗| 含山县| 响水县| 襄城县| 康保县| 宽甸| 鄄城县| 大悟县| 阿城市| 香港 | 敦化市| 安丘市| 芮城县| 南宫市| 曲阜市| 雷山县| 宕昌县|