一、环境描述
测试环境:Centos 7.4
MySQL版本:mariadb-server.x86_64 1:5.5.56-2.el7
使用mysqldump备份时是对一段时间的数据进行全备,但是如果经常对数据进行全备的话,效率会很低,因此可以通过利用相关的命令来编写脚本,每天刷新binlog日志,并备份对应每天的binlog日志来实现增量备份,然后再定期做全量备份即可。
二、数据库备份
1、导入测试数据库
事先准备一测试数据库hellodb.sql(MyISAM引擎),内容随意,用于导入到数据库中作测试用途。
[root@localhost ~]# mysql < hellodb.sql
MariaDB [(none)]> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| hellodb |
| mysql |
| performance_schema |
| test |
+--------------------+
5 rows in set (0.00 sec)
MariaDB [(none)]> use hellodb
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
MariaDB [hellodb]> show tables;
+-------------------+
| Tables_in_hellodb |
+-------------------+
| classes |
| coc |
| courses |
| scores |
| students |
| teachers |
| toc |
+-------------------+
7 rows in set (0.00 sec)
注意:执行增量备份需事先将mysql的binlog日志功能打开,即在/etc/my.cnf中加入log-bin参数并重启mysql服务。
[root@localhost ~]# vim /etc/my.cnf
log-bin=mysqlbin.log
[root@localhost ~]# systemctl restart mariadb
2、全量备份
创建用于保存备份文件的目录:
[root@localhost ~]# mkdir -pv /data/mysqldump/
mkdir: created directory ‘/data’
mkdir: created directory ‘/data/mysqldump/’
根据当前数据库做全量备份。
[root@localhost ~]# mysqldump --lock-all-tables --all-databases --flush-logs --master-data=2 -uroot > /data/mysqldump/fullbackup-01.sql
对于InnoDB引擎来说,只需要将--lock-all-tables替换为--single-transaction,而--flush-logs为结束当前记录的binlog日志,生成新binlog日志文件;
--master-data=2 选项将会在输出SQL中记录下完全备份后新日志文件的名称,以及其开始的pos位置,如:
-- CHANGE MASTER TO MASTER_LOG_FILE='mysqlbin.000002', MASTER_LOG_POS=245;
根据设置的不同,mysql的binlog文件可以保存在指定的目录路径下,此处的binlog保存在默认的/var/lib/mysql路径下。
[root@localhost ~]# ll /var/lib/mysql/
.....
-rw-rw----. 1 mysql mysql 287 Jun 26 20:58 mysqlbin.000001
-rw-rw----. 1 mysql mysql 245 Jun 26 20:58 mysqlbin.000002
-rw-rw----. 1 mysql mysql 36 Jun 26 20:58 mysqlbin.index
....
mysqlbin.index是用于记录binlog文件的明细,而mysqlbin.000001是此前的binlog文件,mysqlbin.000002而则是由--flush-logs选项生成的,记录上一次全量备份或者日志刷新后的相关数据库操作。然后也可以利用mysqladmin --flush-logs
来进行手动刷新binlog日志。
3、备份二进制日志
binlog是一个二进制格式的文件,用于记录用户对数据库更新的SQL语句信息,例如更改数据库表和更改内容的SQL语句都会记录到binlog里,但是对库表等内容的查询不会记录。
默认情况下,binlog日志是二进制格式的,不能使用查看文本工具的命令(比如,cat,vi等)查看,而使用mysqlbinlog解析查看。当有数据写入到数据库时,还会同时把更新的SQL语句写入到对应的binlog文件里,这个文件就是上文说的binlog文件。
在进行二进制日志备份前,我们先来进行一系列的数据库操作。如删除表,创建库,删除数据库等等。
MariaDB [hellodb]> drop table toc;
Query OK, 0 rows affected (0.00 sec)
MariaDB [hellodb]> create database Web;
Query OK, 1 row affected (0.00 sec)
#此时的数据库情况为
MariaDB [hellodb]> show tables;
+-------------------+
| Tables_in_hellodb |
+-------------------+
| classes |
| coc |
| courses |
| scores |
| students |
| teachers |
+-------------------+
6 rows in set (0.00 sec)
MariaDB [hellodb]> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| Web |
| hellodb |
| mysql |
| performance_schema |
| test |
+--------------------+
6 rows in set (0.00 sec)
接着就可以把binlog日志复制备份到其他的路径了。
[root@localhost ~]# cp /var/lib/mysql/mysqlbin.000002 /data/mysqldump/
此时可以用过mysqlbinlog命令来查看自从上次全量备份以后的数据库操作内容。
三、数据库恢复
在完成了数据库的全量备份和binlog日志备份后,我们来通过删除mysql文件来模拟误删或者误操作来实现数据库的恢复还原。
[root@localhost ~]# rm -rf /var/lib/mysql/*
接着我们首先来进行数据库的全量备份恢复。
[root@localhost ~]# systemctl restart mariadb.service
[root@localhost ~]# mysql < /data/mysqldump/fullbackup-01.sql
此时查看数据库的内容后会发现,相关的数据已经恢复到了上一次做全量备份时的数据了。
MariaDB [hellodb]> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| hellodb |
| mysql |
| performance_schema |
| test |
+--------------------+
5 rows in set (0.00 sec)
MariaDB [hellodb]> show tables;
+-------------------+
| Tables_in_hellodb |
+-------------------+
| classes |
| coc |
| courses |
| scores |
| students |
| teachers |
| toc |
+-------------------+
7 rows in set (0.00 sec)
但是我们在全量备份后的数据库操作的内容还没有恢复。此时就体现了binlog日志的重要性了,因为此前开启了log-bin的选项,因此相关的数据库操作均会被记录到相应的binlog日志中,因此我们就可以通过此前备份的binlog日志来恢复全量备份后的数据库内容了。
[root@localhost ~]# mysqlbinlog /data/mysqldump/mysqlbin.000002 | mysql
此时再次查看数据库内容,全量备份后所进行操作的内容应该已经恢复回来了。
MariaDB [(none)]> show database;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'database' at line 1
MariaDB [(none)]> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| Web |
| hellodb |
| mysql |
| performance_schema |
| test |
+--------------------+
6 rows in set (0.00 sec)
MariaDB [(none)]> use hellodb;
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
MariaDB [hellodb]> show tables;
+-------------------+
| Tables_in_hellodb |
+-------------------+
| classes |
| coc |
| courses |
| scores |
| students |
| teachers |
+-------------------+
6 rows in set (0.00 sec)
参考链接:https://blog.csdn.net/wukong_666/article/details/54845003
http://www.cnblogs.com/kevingrace/p/5907254.html
http://www.cnblogs.com/kevingrace/p/5904800.html