tips:这里基于CentOS 7系统
安装:
yum -y install vixie-cron yum -y install crontabs
1.定时任务的编辑
crontab -e
2.编辑内容(表示1分钟执行一次,这里我是执行一个mysql备份脚本)
*/1 * * * * /root/mysqlbackups.sh
3.查看已编辑的定时任务
crontab -l
4.删除已编辑的所有定时任务
crontab -r
5.查看cron执行日志
tail -f -n 200 /var/log/cron
6.检测cron定时服务是否开启
systemctl is-enabled crond.service 注意: enable表示已启用自启动 disable表示未启动=用自启动
7.开启cron自启用
systemctl enable crond.service
8.cron关闭自启动
systemctl disable crond.service
9.查看cron服务的启动状态
systemctl status crond.service
10.启动cron服务[命令没有提示]
systemctl start crond.service
11.停止cron服务
systemctl stop crond.service
12.重启cron服务
systemctl restart crond.service
13.重新加载cron服务
systemctl reload crond.service