mysql备份设备怎么新建_如何使用MySQL自动化备份脚本添加备份任务

#!/bin/bash

#Date:2017/5/2#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 variablesforMySQL#

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

DB_USER='root'DB_PASSWORD='root=E16d^KTu$S6x-YWyo-79uf3D=02232017'DB_PORT='3517'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 variablesforcompleted backup

FULL_BAKDAY='Sunday'TODAY=`date +%A`

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

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

#time variablesforbinlog#

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

#liftcycleforsaving 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 mysqlbinlogis --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 binlogis 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`

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

#Judge the mysql processisrunning or not. #

#mysql stopreturn 1, mysql running return 0.#

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

function DB_RUN(){if test -a $DB_PID && test -a $DB_SOCK;thenreturn 0

else

return 1fi

}

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

#Judge the bacup directoryisexsit not. #

#If the mysqlbakup directory was exsited, there willedreturn 0. #

# If thereis 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

elseecho"$BACKUPDIR is not exist, now create it."mkdir-pv $BACKUPDIRreturn 1fi

}

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

#The full backupforall Databases #

#This functionisuse 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"

elseecho"MySQL DB full backup failed!"fi

}

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$BINLOG_LISTdo$DB_BIN/mysqlbinlog -u$DB_USER -p$DB_PASSWORD -P$DB_PORT --start-datetime="$START_BACKUPBINLOG_TIMEPOINT" $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"

elseecho"MySQL DB incresed backup failed!"fi

}

function OLDER_BACKDIR_EXSIT(){if test -d $BACKUPDIR_OLDER;then

# echo"$BACKUPDIR_OLDER was exist."

return 0

elseecho"$BACKUPDIR_OLDER is not exist, now create it."mkdir-pv $BACKUPDIR_OLDER

#return 1fi

}

function BAKUP_CLEANER(){

#move the backuped file that created timeout of 7days 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 timeout of 14 days fromBACKUPDIR_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 processis run or not, ifnot run, the script will not bakup db

Run_process=`echo $?`

echo $?

if [[ $Run_process == 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_CLEANERelseecho"Start increaing bakup ..."INCREASE_BAKUP

fi

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

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

elseecho"**********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

OLDER_BACKDIR_EXSIT

MAIN>> $BACKUP_LOG

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值