使用mysqldump进行MariaDB 的备份(4)

发现第一天删除的文件已经不存在,但是第二天添加的内容还是没有
MariaDB [hellodb]> select * from tb1;
+------+
| id  |
+------+
|    1 |
|    2 |
|    3 |
|  23 |
+------+
4 rows in set (0.00 sec)

导入第二天的二进制日志转换后的sql文件。
1 [root@MariaDB ~]# mysql -u root -p </backup/all.2.sql

导入完成之后,数据库就回到了故障之前的状态
MariaDB [hellodb]> select * from tb1;
+------+
| id  |
+------+
|    1 |
|    2 |
|    3 |
|  23 |
| 1000 |
| 9000 |
+------+
6 rows in set (0.00 sec)

基于mysqldump快速搭建从库 

恢复mysqldump创建的备份集 

mysqldump缺失-q参数导致MySQL被oom干掉

CentOS/RHEL/Scientific Linux 6 下安装 LAMP (Apache with MariaDB and PHP)

MariaDB Proxy读写分离的实现

Linux下编译安装配置MariaDB数据库的方法

CentOS系统使用yum安装MariaDB数据库

安装MariaDB与MySQL并存

Ubuntu 上如何将 MySQL 5.5 数据库迁移到 MariaDB 10 

[翻译]Ubuntu 14.04 (Trusty) Server 安装 MariaDB 

MariaDB 的详细介绍请点这里
MariaDB 的下载地址请点这里

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/6e790d0686950a358eb46b42e8a0f7d1.html