备份要求:每天23:59点备份数据库
1. 编写shell脚本:
data=%(date +'%Y%M%D')
mysqldump -h XXXXXX -P XXXX -u XXXX -pXXXX databasename |grep gzip > /xxx/${data}.sql.gz
2. crontab 指定定时任务
在/var/spool/cron/crontab/username
编辑crontab文件,59 23 * * * /shell.sh
注:username是你要用哪个用户执行crontab
data是备份名按时间