MySQL定时备份
1.编写备份文件 /root/a_am.sh
DATE=`date +%F`
mysqldump --opt -uroot -p123456 数据库名 | gzip > /root/backup/mysql/数据库名_AM_$DATE.gz
2.定时备份
编写 定时任务调度:crontab -e
输入:0 03 * * * sh /root/a_am.sh
每天凌晨3点开始备份
3.重启定时任务
service crond stop
service crond start