mysql 增量备份脚本_MySQL自动化(全量+增量)备份脚本

一、MySQL的日常备份方案:

全备+增量备份:

1、周日凌晨三点进行全备;

2、周一到周日增量备份。

不是往常的周日全备份,周一到周六增量备份,这样如果周日数据库在完全备份前出问题,恢复完成后,会少周日一天的数据量,所以七天增量备份,周日全备可以更好的保全数据。

这是备份周期演示表:Sun 3:00------Mon 3:00-----------------Tue 3:00----------Wed 3:00----------Thu 3:00----------Fri 3:00----------Sat 3:00----------Sun 3:00

(flush)Sun full---(flush)Sun->Mon binlog---(flush)Mon->Tue---(flush)Tue->Wed---(flush)Wed->Thu---(flush)Thu->Fri---(flush)Fri->Sat---(flush)Sun full---(flush)Sun->Mon binlog---(flush)Mon->Tue---(flush)Tue->Wed---(flush)Wed->Thu---(flush)Thu->Fri---(flush)Fri->Sat---(flush)Sun full

二、备份脚本:

模块化定制,可以随意移动,调节备份策略!

变量栏的帐号密码,文件路径根据自己实际环境可以进行修改,自由度比较高,模块函数全变量,适用度较高,但是可能还有不完善的地方,欢迎提出,谢谢!vim /root/mysql_bakup.sh

#!/bin/bash

#Date:2017/5/2

#Author:wangpengtai

#Blog:http://wangpengtai.blog.51cto.com

#At Sunday, we will backup the completed databases and the incresed binary log during Saturday to Sunday.

#In other weekdays, we only backup the increaing binary log at that day!

################################

#the globle variables for MySQL#

################################

DB_USER='root'

DB_PASSWORD='123456'

DB_PORT='3306'

BACKUPDIR='/tmp/mysqlbakup'

BACKUPDIR_OLDER='/tmp/mysqlbakup_older'

DB_PID='/data/mysql/log/mysqld.pid'

DB_SOCK='/data/mysql/log/mysql.sock'

LOG_DIR='/data/mysql/log'

BACKUP_LOG='/tmp/mysqlbakup/backup.log'

DB_BIN='/usr/local/mysql/bin'

#time variables for completed backup

FULL_BAKDAY='Sunday'

TODAY=`date +%A`

DATE=`date +%Y%m%d`

###########################

#time variables for binlog#

###########################

#liftcycle for saving binlog

DELETE_OLDLOG_TIME=$(date "-d 14 day ago" +%Y%m%d%H%M%S)

#The start time point to backup binlog, the usage of mysqlbinlog is --start-datetime, --stop-datetime, time format is %Y%m%d%H%M%S, eg:20170502171054, time zones is  [start-datetime, stop-datetime)

#The date to start backup binlog is yesterday at this very moment!

START_BACKUPBINLOG_TIMEPOINT=$(date "-d 1 day ago" +"%Y-%m-%d %H:%M:%S")

#BINLOG_LIST=`cat /data/mysql/log/mysql-bin.index`

#注意在my.cnf中配置binlog文件位置时需要使用绝对路径,一定想成好习惯,不要给别人挖坑!!

#####################举例########################

#[mysqld]

#log_bin = /var/lib/mysql/mysql-bin

#####################举例########################

BINLOG_INDEX='/data/mysql/log/mysql-bin.index'

##############################################

#Judge the mysql process is running or not.  #

#mysql stop return 1, mysql running return 0.#

##############################################

function DB_RUN(){

if test -a $DB_PID && test -a $DB_SOCK;then

return 0

else

return 1

fi

}

###################################################################################################

#Judge the bacup directory is exsit not.                                                          #

#If the mysqlbakup directory was exsited, there willed return 0.                                  #

# If there is no a mysqlbakup directory, the fuction will create the directory and return value 1.#

###################################################################################################

function BACKDIR_EXSIT(){

if test -d $BACKUPDIR;then

#        echo "$BACKUPDIR was exist."

return 0

else

echo "$BACKUPDIR is not exist, now create it."

mkdir -pv $BACKUPDIR

return 1

fi

}

###################################################################################################

#Judge the binlog is configed or not.                                                          #

#If the mysqlbakup directory was exsited, there willed return 0.                                  #

# If there is no a mysqlbakup directory, the fuction will create the directory and return value 1.#

###################################################################################################

function BINLOG_EXSIT(){

if test -f $BINLOG_INDEX;then

#        echo "$BACKUPDIR was exist."

return 0

fi

}

###################################################

#The full backup for all Databases                #

#This function is use to backup the all databases.#

###################################################

function FULL_BAKUP(){

echo "At `date +%D\ %T`: Starting full backup the MySQL DB ... "

#    rm -fr $BACKUPDIR/db_fullbak_$DATE.sql  #for test !!

$DB_BIN/mysqldump --lock-all-tables --flush-logs --master-data=2 -u$DB_USER -p$DB_PASSWORD -P$DB_PORT -A |gzip > $BACKUPDIR/db_fullbak_$DATE.sql.gz

FULL_HEALTH=`echo $?`

if [[ $FULL_HEALTH == 0 ]];then

echo "At `date +%D\ %T`: MySQL DB incresed backup successfully"

else

echo "MySQL DB full backup failed!"

fi

}

#python

# >>> with open('/data/mysql/log/mysql-bin.index','r') as obj:

# ...    for i in obj:

# ...       print os.path.basename(i)

# ...

# mysql-bin.000006

# mysql-bin.000007

# mysql-bin.000008

# mysql-bin.000009

function INCREASE_BAKUP(){

echo "At `date +%D\ %T`: Starting increased backup the MySQL DB ... "

$DB_BIN/mysqladmin -u$DB_USER -p$DB_PASSWORD -P$DB_PORT flush-logs

$DB_BIN/mysql -u$DB_USER -p$DB_PASSWORD -P$DB_PORT -e "purge master logs before ${DELETE_OLDLOG_TIME}"

for i in `cat $BINLOG_INDEX | awk -F'/' '{print $NF}'`

do

$DB_BIN/mysqlbinlog -u$DB_USER -p$DB_PASSWORD -P$DB_PORT --start-datetime="$START_BACKUPBINLOG_TIMEPOINT" $LOG_DIR/$i |gzip >> $BACKUPDIR/db_daily_$DATE.sql.gz

done

# $DB_BIN/mysqlbinlog -u$DB_USER -p$DB_PASSWORD -P$DB_PORT --start-datetime="$START_BACKUPBINLOG_TIME" $LOG_DIR/mysql-bin.[0-9]* |gzip >> $BACKUPDIR/db_daily_$DATE.sql.gz

INCREASE_HEALTH=`echo $?`

if [[ $INCREASE_HEALTH == 0 ]];then

echo "At `date +%D\ %T`: MySQL DB incresed backup successfully"

else

echo "MySQL DB incresed backup failed!"

fi

}

function OLDER_BACKDIR_EXSIT(){

if test -d $BACKUPDIR_OLDER;then

#        echo "$BACKUPDIR_OLDER was exist."

return 0

else

echo "$BACKUPDIR_OLDER is not exist, now create it."

mkdir -pv $BACKUPDIR_OLDER

#        return 1

fi

}

function BAKUP_CLEANER(){

#move the backuped file that created time out of 7 days to the BACKUPDIR_OLDER directory

returnkey=`find $BACKUPDIR -name "*.sql.gz" -mtime +7 -exec ls -lh {} \;`

returnkey_old=`find $BACKUPDIR_OLDER -name "*.sql.gz" -mtime +14 -exec ls -lh {} \;`

if [[ $returnkey != '' ]];then

echo "----------------------"

echo "Moving the older backuped file out of 7 days to $BACKUPDIR_OLDER."

echo "The moved file list is:"

find $BACKUPDIR -name "*.sql.gz" -mtime +7 -exec mv {} $BACKUPDIR_OLDER \;

echo "-----------------------"

elif [[ $returnkey_old != '' ]];then

#delete the backuped file that created time out of 14 days from BACKUPDIR_OLDER directory.

echo "Delete the older backuped file out of 14 days from $BACKUPDIR_OLDER."

echo "The deleted files list is:"

find $BACKUPDIR_OLDER -name "*.sql.gz" -mtime +14 -exec rm -fr {} \;

fi

}

####################################

#--------------main----------------#

####################################

function MAIN(){

DB_RUN #Judge the process is run or not, if not run, the script will not bakup db

Run_process=`echo $?`

echo $?

if [[ $Run_process == 0 ]];then

BINLOG_EXSIT

binlog_index=`echo $?`

if [[ $binlog_index == 0 ]];then

echo "**********START**********"

echo $(date +"%y-%m-%d %H:%M:%S %A")

echo "~~~~~~~~~~~~~~~~~~~~~~~"

if [[ $TODAY == $FULL_BAKDAY ]];then

echo "Start completed bakup ..."

INCREASE_BAKUP

FULL_BAKUP    #full backup to all DB

BAKUP_CLEANER

else

echo "Start increaing bakup ..."

INCREASE_BAKUP

fi

echo "~~~~~~~~~~~~~~~~~~~~~~~"

echo $(date +"%y-%m-%d %H:%M:%S %A")

echo "**********END**********"

else

echo "**********START**********"

echo $(date +"%y-%m-%d %H:%M:%S %A")

echo "~~~~~~~~~~~~~~~~~~~~~~~"

echo "Sorry, MySQL binlog was not configed, please config the my.cnf firstly!"

echo "~~~~~~~~~~~~~~~~~~~~~~~"

echo $(date +"%y-%m-%d %H:%M:%S %A")

echo "**********END**********"

fi

else

echo "**********START**********"

echo $(date +"%y-%m-%d %H:%M:%S %A")

echo "~~~~~~~~~~~~~~~~~~~~~~~"

echo "Sorry, MySQL was not running, the db could not be backuped!"

echo "~~~~~~~~~~~~~~~~~~~~~~~"

echo $(date +"%y-%m-%d %H:%M:%S %A")

echo "**********END**********"

fi

}

#starting runing

BACKDIR_EXSIT $BACKUP_LOG

OLDER_BACKDIR_EXSIT $BACKUP_LOG

MAIN >> $BACKUP_LOG

三、测试方法:

使用了一个测试脚本,修改日期,达到一个月的演示效果。#!/bin/bash

for day in {1..30}

do

date -s "2017-06-$day 12:00:00"

/bin/bash /root/bakup/mysql_backup.sh

done

四、脚本使用方法:crontab -e

0 3 * * *  /bin/bash /root/bakup/mysql_bakup.sh > /dev/null 2>&1 空格

#加个空格,不然有些机器不能执行脚本

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/433038.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

JS代码大全

一、验证类 1、数字验证内 1.1 整数 /^(-|\)?\d$/.test(str) 1.2 大于0的整数 (用于传来的ID的验证) /^\d$/.test(str) 1.3 负整数的验证 /^-\d$/.test(str) 2、时间类 2.1 短时间,形如 (13:04:06) function isTime(str) …

Linux编程里getopt_long_only函数用法详解

在程序中难免需要使用命令行选项,可以选择自己解析命令行选项,但是有现成的,何必再造轮子。下面介绍使用getopt_long_only和getopt_long( 两者用法差不多 )解析命令行选项。 程序中主要使用: 短选项长选项是否需要参数-n--userna…

mybatis的mysql参数传递参数_mybatis 传递参数的方法总结

有三种mybatis传递参数的方式:第一种mybatis传入参数是有序号的,可以直接用序号取得参数User selectUser(Stringname,String area);可以在xml配置文件中写select * from user_user_t where user_name #{0} and user_area#{1}#{0} 表示传递过来的第一参数 . 也就是说#{N} 就可以…

C# 数据的加密解密

/// <summary> /// 加密数据 /// </summary> /// <param name"Text"></param> /// <param name"sKey"></param> /// <returns></returns> public static string Encrypt(string Text, string sKey){DESCr…

strdup函数的用法

函数名: strdup 功 能: 将串拷贝到新建的位置处 用 法: char *strdup(char *str)&#xff1b; 这个函数在linux的man手册里解释为&#xff1a; The strdup() function returns a pointer toa new string which is a duplicate of the string s. Memory for thenew string is …

eclipse中查看mysql_eclipse中怎样查看sqlite数据库的表

string createtable(classclazz , string tablename){//实例化一个容器&#xff0c;用来拼接sql语句stringbuffer sbuffer new stringbuffer();//sql语句&#xff0c;第一个字段为_id 主键自增&#xff0c;这是通用的&#xff0c;所以直接写死sbuffer.append("create tab…

Java 泛型(一)

1&#xff0c;泛型的声明 a&#xff09;在方法中的声明&#xff1a; 现在访问修饰符后&#xff0c;返回值类型前加上<T>&#xff0c;其它字母亦可。 b&#xff09;在类中的声明&#xff1a; 在类名后加<T> 练习&#xff1a;用泛型写一个方法&#xff0c;将一个数组…

敏捷开发之Scrum扫盲篇

现在敏捷开发是越来越火了&#xff0c;人人都在谈敏捷&#xff0c;人人都在学习Scrum和XP... 为了不落后他人&#xff0c;于是我也开始学习Scrum&#xff0c;今天主要是对我最近阅读的相关资料&#xff0c;根据自己的理解&#xff0c;用自己的话来讲述Scrum中的各个环节&#x…

macos xampp mysql 命令_MAC系统XAMPP 中 MySQL命令行client配置使用

在PHP的学习过程中。MySQL预计是必定会接触的。MySQL的管理相信大家也会使用phpmyadmin&#xff1a;好吧。phpmyadmin的确是MySQL管理的神器&#xff0c;你想要的。他好多都有&#xff0c;在开发的过程中。对于后台数据库的设计架构帮助真的非常大。可是。在这篇文章的主角确不…

]Kinect for Windows SDK开发入门(六):骨骼追踪基础 上

原文来自&#xff1a;http://www.cnblogs.com/yangecnu/archive/2012/04/06/KinectSDK_Skeleton_Tracking_Part1.html Kinect产生的景深数据作用有限&#xff0c;要利用Kinect创建真正意义上交互&#xff0c;有趣和难忘的应用&#xff0c;还需要除了深度数据之外的其他数据。这…

signal(SIGPIPE, SIG_IGN);

TCP是全双工的信道, 可以看作两条单工信道, TCP连接两端的两个端点各负责一条. 当对端调用close时, 虽然本意是关闭整个两条信道, 但本端只是收到FIN包. 按照TCP协议的语义, 表示对端只是关闭了其所负责的那一条单工信道, 仍然可以继续接收数据. 也就是说, 因为TCP协议的限制…

mysql与groupconcat相反的_MySQL中GROUP_CONCAT的反义词是什么?

我认为这是你需要的(存储过程)&#xff1a;Mysql split column string into rowsDELIMITER $$DROP PROCEDURE IF EXISTS explode_table $$CREATE PROCEDURE explode_table(bound VARCHAR(255))BEGINDECLARE id INT DEFAULT 0;DECLARE value TEXT;DECLARE occurance INT DEFAULT…

leetcode: Roman to Integer

http://oj.leetcode.com/problems/roman-to-integer/ Given a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999. 思路&#xff1a; 根据个十百千位分别作为一个状态机处理就可以了。 1 class Solution {2 public:3 in…

mysql 线程池 下载_java线程池实现批量下载文件

本文实例为大家分享了java线程池实现批量下载文件的具体代码&#xff0c;供大家参考&#xff0c;具体内容如下1 创建线程池package com.cheng.webb.thread;import java.util.concurrent.ArrayBlockingQueue;import java.util.concurrent.ExecutorService;import java.util.conc…

sqlite3 编译问题

sqlite3用到libpthread和libdl因此要链接这两个库 假如先把sqlite3.c编译成sqlite3.o或者libsqlite3.a g -lm -lpthread -ldl -o 目标 main.o sqlite3.o 或者 g -lm -lpthread -ldl -lsqlite3 -o 目标 main.o sqlite3.o 都会报链接错误&#xff0c;找不到pthread和dl里面的…

从零开始学习Hadoop--第2章 第一个MapReduce程序

1.Hadoop从头说 1.1 Google是一家做搜索的公司 做搜索是技术难度很高的活。首先要存储很多的数据&#xff0c;要把全球的大部分网页都抓下来&#xff0c;可想而知存储量有多大。然后&#xff0c;要能快速检索网页&#xff0c;用户输入几个关键词找资料&#xff0c;越快越好&…

mysql可以使用sqlplus么_使用sqlplus

1. 执行一个SQL脚本文件SQL>start file_nameSQL> file_name可以将多条sql语句保存在一个文本文件中&#xff0c;这样当要执行这个文件中的所有的sql语句时&#xff0c;用上面的任一命令即可.等于start命令&#xff0c;用来运行一个sql脚本文件命令调用当前目录下的&#…

CPU8085 8086名字的由来

为什么CPU叫8085呢&#xff1f; 8085这个名字的由来还是很有逻辑的&#xff1a;The naming of microprocessor indicates historical facts blended with technology improvements.1)The microprocessor came in the late 70s(1976).This was close to 80.so from here 1ST …

Daily Scrum 10.29

时间越来越紧迫&#xff0c;不过大家逐渐进入了状态。虽然在有些问题上大家意见有些不同&#xff0c;但是最终还都是为着团队着想&#xff0c;很好地达成一致了。 MemberToday’s Task Tomorrow’s Task李孟 task615 测试(活动) task571 完成daily scrum 10.29撰文 task615 测试…

python中list index out of range_Python知识精解:str split()方法

描述split()函数是Python字符串函数。split() 通过指定分隔符对字符串进行切片。如果指定了整型参数num&#xff0c;则仅分隔num 1个子字符串&#xff08;即分割num次&#xff09;。使用split()函数将字符串分割后&#xff0c;返回的是一个列表&#xff0c;列表中存储着分割后…