crontab定时任务

Posted sunshine_zhf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了crontab定时任务相关的知识,希望对你有一定的参考价值。

crontab -e

0 4 * * * /root/scripts/mysqlbackup.sh

0 4 * * * /root/scripts/apacherestart.sh

0 5 * * 1,3,5 /usr/bin/python /home/report/report_form.py  每周一、周三、周五早上五点执行python脚本report_form.py

python需要知名绝对路径(使用命令which python)

crontab –e : 修改 crontab 文件. 如果文件不存在会自动创建。 

crontab –l : 显示 crontab 文件。 

 crontab -r : 删除 crontab 文件。

crontab -ir : 删除 crontab 文件前提醒用户。

*注意:不希望执行某个定时任务,只需要把crontab -e里面的那行删除掉就可以

以上是关于crontab定时任务的主要内容,如果未能解决你的问题,请参考以下文章

linux定时任务(crontab)

Crontab定时任务

centos7 ubuntu crontab定时任务

Celery实现定时任务crontab

定时任务小结

Linux定时任务-crontab