-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbkmail.sh
21 lines (16 loc) · 954 Bytes
/
bkmail.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash
# Date: 20180426
#this script do backup mysqldb and if do it fail sendEmail
maillist="[email protected];[email protected]"
#确保备份目录存在
[ -d /mnt/oss/bsb/$(date +"%Y-%m") ] || mkdir -p /mnt/oss/bsb/$(date +"%Y-%m")
BACKUP="/usr/bin/mysqldump -q --single-transaction -S /var/lib/mysql/mysql.sock -uroot -p81234ideal"
# 备份业务数据库
$BACKUP -B ultron | gzip > /mnt/oss/bsb/$(date +"%Y-%m")/bsb_$(date +"%F-%H-%M").sql.gz
if [ $? -eq 0 ]
then
echo "`date +%Y/%m/%d-%H:%M:%S` ultron backup successd" >> /root/backup_log/ultron_db_backup.log
else
echo "`date +%Y/%m/%d-%H:%M:%S` ultron backup failed, check the mail " >> /root/backup_log/ultron_db_backup.log
/usr/local/bin/sendEmail -f [email protected] -t "$maillist" -s smtp.mxhichina.com:587 -u "backup failed" -o message-content-type=html -o message-charset=utf-8 -xu [email protected] -xp Passw0rd -m "ultron_db backup failed!"
fi