如何用mysqldump进行全量和时间点备份
来源:脚本之家
时间:2023-01-07 11:58:54 263浏览 收藏
亲爱的编程学习爱好者,如果你点开了这篇文章,说明你对《如何用mysqldump进行全量和时间点备份》很感兴趣。本篇文章就来给大家详细解析一下,主要介绍一下MySQL、mysqldump全量备份、时间点备份,希望所有认真读完的童鞋们,都有实质性的提高。
mysqldump在mysql中用于逻辑备份,虽然速度不快,但非常灵活,有很多功能,灵活使用的化绝对是利器。
首先思考一个问题,mysql为什么要备份,主要还是数据安全性,比如主库挂了,数据不小心被删除了,所以全量备份非常重要。
是从主库还是副库进行全量备份呢?
1:从主库
主库比较重要,但其实备份的时候并不会影响数据库
mysqldump --host= --user= --password= --single-transaction --master-data=1 --flush-logs --databases >~/db.log
—single-transaction 参数能够报纸一致性读,不会锁表,也就是备份的时候不影响数据更新。
it dumps the consistent state of the database at the time when START TRANSACTION was issued without blocking any applications.
因为一致性读,能够保证coordinates点的位置,即使备份时间很久,也能得出正确的同步位置点。
While a —single-transaction dump is in process, to ensure a valid dump file (correct table contents and binary log coordinates)
—master-data参数也很重要,导出的语句会包含CHANGE MASTER TO语句,包括备份语句同步到的二进制文件和位置点。
Use this option to dump a master replication server to produce a dump file that can be used to set upanother server as a slave of the master. It causes the dump output to include a CHANGE MASTER TO statement that indicates the binary log coordinates (file name and position) of the dumped server. These are the master server coordinates from which the slave should start replicating after you load the dump file into the slave.
—flush-logs会强制重新生成一个新的二进制文件,这样恢复的时候会比较方便。
2:从副库
感觉上从副库备份更安全。
mysqldump --host=--user= --password= --dump-slave=1 --flush-logs --apply-slave-statements --include-master-host-port --databases >~/db.log;
— dump-slave和—master-data参数很类似:
This option is similar to —master-data except that it is used to dump a replication slave server to produce a dump file that can be used to set up another server as a slave that has the same master as the dumped server. It causes the dump output to include a CHANGE MASTER TO statement that indicates the binary log coordinates (file name and position) of the dumped slave's master. These are the master server coordinates from which the slave should start replicating.
记住一点它获取的是主库的bin log coordinates(不是备份库的)
—dump-slave causes the coordinates from the master to be used rather than those of the dumped server
dump出来的语句会包含 — Position to start replication or point-in-time recovery from。
—apply-slave-statements会让dump语句中自动包含start和stop slave语句。—include-master-host-port包含主库的连接信息。
必须记住一点,即使有—single-transaction语句,—dump-slave也会暂停mysql同步,也就是备份库的数据是落后于主库的,所以一般自动化脚本在备份的时候会先摘除备份库。
This option causes mysqldump to stop the slave SQL thread before the dump and restart it again after.
3:如何进行时间点恢复
没有实战过,首先基于最近的一次全量备份进行恢复,然后将后续的binlog文件导入(如果这些文件还在的话),所以副库最好也备份binlog语句。
如果数据被误删除了,将备份点(—flush-logs发挥作用了)到今天凌晨的binlog语句导入进来,或者找到安全的binlog位置点进行恢复。至于如何跳过“危险语句”是比较难控制的。
文中关于mysql的知识介绍,希望对你的学习有所帮助!若是受益匪浅,那就动动鼠标收藏这篇《如何用mysqldump进行全量和时间点备份》文章吧,也可关注golang学习网公众号了解相关技术文章。
-
499 收藏
-
244 收藏
-
235 收藏
-
157 收藏
-
101 收藏
-
259 收藏
-
411 收藏
-
476 收藏
-
312 收藏
-
244 收藏
-
195 收藏
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习