转载 mysql 备份脚本

#!/bin/bash
#################################################################
# #
# Purpose: MySQL backups #
# This script does a full or incremental backup #
# The full is done via mysqldump #
# The incremental is done via flush-logs option #
# with mysqladmin #
# #
# The script is also setup to email if a #
# failure occurs #
# #
# Assumptions: #
# 1. Database is in Binary Update Log mode #
# 2. The variables are set correctly #
# #
# Usage: mysql_backup [full|incremental] #
# #
# #
#################################################################
#################################################################
# INITILIAZE VARIABLES #
#################################################################
# Set the mode, full|incremental
# parameter is passed in
MODE=$1
# set the username to connect to mysql for the backup
MYSQLUSER=backup
# set the password to connect to mysql for the backup
MYSQLUSERPW=password
# set the Binary Update Logs Path
BINLOGPATH=/mysql/logs/emds01/mysql
# Set the binary Update Logs name
BINLOGNAME=viper2-bin
# set the backup path
BACKUPPATH=/export/home/mysql/backups
# set the email address for errors to be emailed to
EMAIL_ADDR=shenandoah.speers@cicadacorp.com
# set the log file
LOGFILE=$BACKUPPATH/logs/$HOSTNAME_$RUNDATE.log
# set the error log file
LOGERR=$BACKUPPATH/logs/ERRORS_$HOSTNAME_$RUNDATE.log
# set the number of days to keep the backups
DAYSTOKEEP=5
# set Run date
RUNDATE=`date +%Y%m%d%s`
# set hostname
HOSTNAME=`uname -n`
#################################################################
# GLOBAL FUNCTIONS #
#################################################################
copyBinlogs() {
# copy binlogs to backup dir
echo "Copying binlogs"
for FILE in `cat $BINLOGPATH/$BINLOGNAME.index`
do
SFILE=(${FILE/*//})
echo "- binlog $SFILE"
cp $FILE $BACKUPPATH/$SFILE_$RUNDATE
gzip $BACKUPPATH/$SFILE_$RUNDATE
done
}
removeOldBackups() {
# remove old backups
echo "Removing old backups greater then $DAYSTOKEEP days"
find $BACKUPPATH -type f -mtime +$DAYSTOKEEP -name *.gz -print -exec rm {} ;
find $BACKUPPATH/logs -type f -mtime +$DAYSTOKEEP -name *.log -print -exec rm {} ;
}
startlog() {
# IO redirection for logging
touch $LOGFILE
exec 6>&1 # Link file descriptor #6 with stdout.
# Saves stdout.
exec > $LOGFILE # stdout replaced with file $LOGFILE.
touch $LOGERR
exec 7>&2 # Link file descriptor #7 with stderr.
# Saves stderr.
exec 2> $LOGERR # stderr replaced with file $LOGERR.
}
stoplog() {
#Clean up IO redirection
exec 1>&6 6>&- # Restore stdout and close file descriptor #6.
exec 1>&7 7>&- # Restore stdout and close file descriptor #7.
}
#################################################################
# START OF MAIN #
#################################################################
case "$MODE" in
'full')
# Daily backup
# - copy all bin logs to backup directory
# - remove old backups and logs
startlog;
echo "Start Mysql Daily backup `date +%c`"
mysqldump -u $MYSQLUSER -p$MYSQLUSERPW --single-transaction --flush-logs --master-data=2
--all-databases --delete-master-logs | gzip > $BACKUPPATH/$HOSTNAME_full_$RUNDATE.sql.gz
copyBinlogs;
removeOldBackups;
echo "Finish Mysql Daily backup `date +%c`"
stoplog;
email;
;;
'incremental')
# hourly backup
# - flush logs
# - copy all bin logs to backup directory if not already done
echo "Start Mysql hourly backup `date +%c`"
startlog;
mysqladmin -u $MYSQLUSER -p$MYSQLUSERPW flush-logs
copyBinlogs;
echo "Finish Mysql hourly backup `date +%c`"
stoplog;
;;
*)
echo "Usage: mysql_backup [full|incremental]"
;;
esac
# email any errors encountered
if [ -s "$LOGERR" ]
then
cat "$LOGERR" | mail -s "ERRORS REPORTED: MySQL Backup error Log for $HOSTNAME - $RUNDATE" $EMAIL_ADDR
cat "$LOGFILE" | mail -s "MySQL Backup Log for $HOSTNAME - $RUNDATE" $EMAIL_ADDR
STATUS=1
else
STATUS=0
fi
exit $STATUS
#################################################################
# END OF MAIN #
#################################################################
[@more@]

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/38402/viewspace-1024717/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/38402/viewspace-1024717/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值