溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

mysql數(shù)據(jù)庫增量數(shù)據(jù)恢復(fù)的方法是什么

發(fā)布時(shí)間:2021-12-21 17:32:53 來源:億速云 閱讀:240 作者:iii 欄目:大數(shù)據(jù)

本篇內(nèi)容介紹了“mysql數(shù)據(jù)庫增量數(shù)據(jù)恢復(fù)的方法是什么”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

一、工作場景

(1)MySQL數(shù)據(jù)庫每晚12:00自動(dòng)完全備份。

(2)某天早上上班,9點(diǎn)的時(shí)候,一同事犯暈drop了一個(gè)數(shù)據(jù)庫!

(3)需要緊急恢復(fù)!可利用備份的數(shù)據(jù)文件以及增量的binlog文件進(jìn)行數(shù)據(jù)恢復(fù)。

二、數(shù)據(jù)恢復(fù)思路

(1)利用全備的sql文件中記錄的CHANGE MASTER語句,binlog文件及其位置點(diǎn)信息,找出binlog文件中增量的那部分。

(2)用mysqlbinlog命令將上述的binlog文件導(dǎo)出為sql文件,并剔除其中的drop語句。

(3)通過全備文件和增量binlog文件的導(dǎo)出sql文件,就可以恢復(fù)到完整的數(shù)據(jù)。

三、實(shí)例說明

----------------------------------------

首先,要確保mysql開啟了binlog日志功能

在/etc/my.cnf文件里的[mysqld]區(qū)塊添加:

log-bin=mysql-bin

然后重啟mysql服務(wù)

----------------------------------------

(1)在ops庫下創(chuàng)建一張表customers

mysql> use ops;

mysql> create table customers(

-> id int not null auto_increment,

-> name char(20) not null,

-> age int not null,

-> primary key(id)

-> )engine=InnoDB;

Query OK, 0 rows affected (0.09 sec)

mysql> show tables;

+---------------+

| Tables_in_ops |

+---------------+

| customers |

+---------------+

1 row in set (0.00 sec)

mysql> desc customers;

+-------+----------+------+-----+---------+----------------+

| Field | Type | Null | Key | Default | Extra |

+-------+----------+------+-----+---------+----------------+

| id | int(11) | NO | PRI | NULL | auto_increment |

| name | char(20) | NO | | NULL | |

| age | int(11) | NO | | NULL | |

+-------+----------+------+-----+---------+----------------+

3 rows in set (0.02 sec)

mysql> customers values(1,"wangbo","24");

Query OK, 1 row affected (0.06 sec)

mysql> customers values(2,"guohui","22");

Query OK, 1 row affected (0.06 sec)

mysql> customers values(3,"zhangheng","27");

Query OK, 1 row affected (0.09 sec)

mysql> select * from customers;

+----+-----------+-----+

| id | name | age |

+----+-----------+-----+

| 1 | wangbo | 24 |

| 2 | guohui | 22 |

| 3 | zhangheng | 27 |

+----+-----------+-----+

3 rows in set (0.00 sec)

(2)現(xiàn)在進(jìn)行全備份

[root@vm-002 ~]# mysqldump -uroot -p -B -F -R -x --master-data=2 ops|gzip >/opt/backup/ops_$(date +%F).sql.gz

Enter password: 

[root@vm-002 ~]# ls /opt/backup/

ops_2016-09-25.sql.gz

-----------------

參數(shù)說明:

-B:指定數(shù)據(jù)庫

-F:刷新日志

-R:備份存儲(chǔ)過程等

-x:鎖表

--master-data:在備份語句里添加CHANGE MASTER語句以及binlog文件及位置點(diǎn)信息

-----------------

(3)再次插入數(shù)據(jù)

mysql> customers values(4,"liupeng","21");

Query OK, 1 row affected (0.06 sec)

mysql> customers values(5,"xiaoda","31");

Query OK, 1 row affected (0.07 sec)

mysql> customers values(6,"fuaiai","26");

Query OK, 1 row affected (0.06 sec)

mysql> select * from customers;

+----+-----------+-----+

| id | name | age |

+----+-----------+-----+

| 1 | wangbo | 24 |

| 2 | guohui | 22 |

| 3 | zhangheng | 27 |

| 4 | liupeng | 21 |

| 5 | xiaoda | 31 |

| 6 | fuaiai | 26 |

+----+-----------+-----+

6 rows in set (0.00 sec)

(4)此時(shí)誤操作,刪除了test數(shù)據(jù)庫

mysql> drop database ops;

Query OK, 1 row affected (0.04 sec)

此時(shí),全備之后到誤操作時(shí)刻之間,用戶寫入的數(shù)據(jù)在binlog中,需要恢復(fù)出來!

(5)查看全備之后新增的binlog文件

[root@vm-002 ~]# cd /opt/backup/

[root@vm-002 backup]# ls

ops_2016-09-25.sql.gz

[root@vm-002 backup]# gzip -d ops_2016-09-25.sql.gz 

[root@vm-002 backup]# ls

ops_2016-09-25.sql

[root@vm-002 backup]# grep CHANGE ops_2016-09-25.sql 

-- CHANGE MASTER TO MASTER_LOG_FILE='mysql-bin.000002', MASTER_LOG_POS=106;

這是全備時(shí)刻的binlog文件位置

即mysql-bin.000002的106行,因此在該文件之前的binlog文件中的數(shù)據(jù)都已經(jīng)包含在這個(gè)全備的sql文件中了

(6)移動(dòng)binlog文件,并導(dǎo)出為sql文件,剔除其中的drop語句

查看mysql的數(shù)據(jù)存放目錄,有下面可知是在/var/lib/mysql下

[root@vm-002 backup]# ps -ef|grep mysql

root 9272 1 0 01:43 pts/1 00:00:00 /bin/sh /usr/bin/mysqld_safe --datadir=/var/lib/mysql --socket=/var/lib/mysql/mysql.sock --pid-file=/var/run/mysqld/mysqld.pid --basedir=/usr --user=mysql

mysql 9377 9272 0 01:43 pts/1 00:00:00 /usr/libexec/mysqld --basedir=/usr --datadir=/var/lib/mysql --user=mysql --log-error=/var/log/mysqld.log --pid-file=/var/run/mysqld/mysqld.pid --socket=/var/lib/mysql/mysql.sock

[root@vm-002 backup]# cd /var/lib/mysql/

[root@vm-002 mysql]# ls

ibdata1 ib_logfile0 ib_logfile1 mysql mysql-bin.000001 mysql-bin.000002 mysql-bin.index mysql.sock test

[root@vm-002 mysql]# cp mysql-bin.000002 /opt/backup/

將binlog文件導(dǎo)出sql文件,并vim編輯它刪除其中的drop語句

[root@vm-002 backup]# mysqlbinlog -d ops mysql-bin.000002 >002bin.sql

[root@vm-002 backup]# ls

002bin.sql mysql-bin.000002 ops_2016-09-25.sql

[root@vm-002 backup]# vim 002bin.sql #刪除里面的drop語句

注意:

在恢復(fù)全備數(shù)據(jù)之前必須將該binlog文件移出,否則恢復(fù)過程中,會(huì)繼續(xù)寫入語句到binlog,最終導(dǎo)致增量恢復(fù)數(shù)據(jù)部分變得比較混亂

(7)恢復(fù)數(shù)據(jù)

[root@vm-002 backup]# mysql -uroot -p < ops_2016-09-25.sql 

Enter password: 

[root@vm-002 backup]#

查看數(shù)據(jù)庫,看看ops庫在不在

mysql> show databases;

+--------------------+

| Database |

+--------------------+

| information_schema |

| mysql |

| ops |

| test |

+--------------------+

4 rows in set (0.00 sec)

mysql> use ops;

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 customers;

+----+-----------+-----+

| id | name | age |

+----+-----------+-----+

| 1 | wangbo | 0 |

| 2 | guohui | 0 |

| 3 | zhangheng | 0 |

+----+-----------+-----+

3 rows in set (0.00 sec)

此時(shí)恢復(fù)了全備時(shí)刻的數(shù)據(jù)

接著,使用002bin.sql文件恢復(fù)全備時(shí)刻到刪除數(shù)據(jù)庫之間,新增的數(shù)據(jù)

[root@vm-002 backup]# mysql -uroot -p ops <002bin.sql

Enter password: 

[root@vm-002 backup]#

再次查看數(shù)據(jù)庫,發(fā)現(xiàn)全備份到刪除數(shù)據(jù)庫之間的那部分?jǐn)?shù)據(jù)也恢復(fù)了!!

mysql> select * from customers;

+----+-----------+-----+

| id | name | age |

+----+-----------+-----+

| 1 | wangbo | 24 |

| 2 | guohui | 22 |

| 3 | zhangheng | 27 |

| 4 | liupeng | 21 |

| 5 | xiaoda | 31 |

| 6 | fuaiai | 26 |

+----+-----------+-----+

6 rows in set (0.00 sec)

“mysql數(shù)據(jù)庫增量數(shù)據(jù)恢復(fù)的方法是什么”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI