一、环境
环境:Centos 6.5 ,MySQL 5.7.22, yum install 命令安装
二、备份
指定备份路径,指定 --master-data=2 参数备份时输出 MASTER_LOG_POS 位置信息
备份脚本:
1 #!/bin/bash 2 3 backup_path=/home/app/bak_mysql 4 password="password" 5 6 err() { 7 echo "[$(date +'%Y-%m-%d %H:%M:%S')]: $@" >&2 >>${backup_path}/fail_$(date +%Y%m%d).log 8 } 9 #错误后打印错误信息生成日志10 11 mysqldump -uroot -p${password} --opt -R --events --triggers=true\12 --master-data=2 --single-transaction databaseName --ignore-table=databaseName.t_attachment\13 | gzip > ${backup_path}/backup_$(date +%Y%m%d).sql.gz14 #备份同时压缩15 16 if [ $? -ne 0 ];then17 err $?18 exit19 fi
三、定时任务:
- 查看定时任务
[root@daf ~]# crontab -u username -lno crontab for vfit要查看所有用户的,只能根据 /etc/passwd 文件中的用户名一一列举了,可以用脚本。
for u in `cat /etc/passwd | cut -d":" -f1`;do crontab -l -u $u;done
给指定用户创建定时任务
1 [root@*** ~]# crontab -u username -e2 no crontab for username - using an empty one3 crontab: installing new crontab4 [root@*** ~]# crontab -u username -l5 0 2 */2 * * /home/username/backup_mysql/backup_mysql.sh若指定用户无权限操作指定脚本则需进行授权: chmod u+x backup_mysql.sh 定时任务日志文件目录:/var/log/cron
三、恢复方案
1、准备好最新的备份文件进行全量恢复
2、找出增量文件
3、恢复数据
1 [vfit@iZ946xtgmogZ bak_mysql]$ grep MASTER_LOG_POS bak.sql2 -- CHANGE MASTER TO MASTER_LOG_FILE='mysql-bin.000004', MASTER_LOG_POS=1633307;3 4 [vfit@iZ946xtgmogZ bak_mysql]$ mysqlbinlog --no-defaults --database=bak --start-position=1633307 /var/lib/mysql/mysql-bin.000004 > ~/addbak.sql5 //删除问题语句 执行恢复代码6 [vfit@iZ946xtgmogZ bak_mysql]$ mysql -uroot -pgo2020@Vfangtuan bak < ~/bak.sql7 [vfit@iZ946xtgmogZ bak_mysql]$ mysql -uroot -pgo2020@Vfangtuan bak < ~/addbak.sql
错误语句示例:
自建单机MySQL数据库备份方案小马哥、 环球易购、 ad公司、 亚马逊卖家如何获取店铺流量、 解除亚马逊限制留评、 速卖通卖家运营有哪些、 珠海旅游线路报价优惠、 珠海旅游线路报价优惠、 珠海旅游线路报价优惠、
No comments:
Post a Comment