[mysql]每日備份shell指令碼,mysql備份shell指令碼

來源:互聯網
上載者:User

[mysql]每日備份shell指令碼,mysql備份shell指令碼

每天固定時間用mysqldump 備份mysql資料。

#!/bin/bash#每天早上4點, mysql備份資料 orangleliu#chmod 700 backup.sh#crontab -e#0 4 * * * /home/erya/run/moniter/mysql_backup.shuser="radius"password=""host="localhost"db_name="radius"#backup directory base_dir="/home/backup"backup_log="${base_dir}/mysql_backup.log"backup_path=${base_dir}#file infodate=$(date +"%Y-%m-%d")filename=$backup_path/$db_name-$date.sql.gzumask 177#back up mysqldump --user=$user --password=$password --host=$host $db_name | gzip > $filename#Delete files older than 10 daysfind $backup_path/* -mtime +10 -exec rm {} \;echo "backup finished at $(date +'%Y-%m-%d %H:%M:%S')" >> "$backup_log"

參考

  • Mysql-backup

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.