django crontab 定时任务

时间:2023-03-08 20:19:54

分 时 日 月 周 命令(最好用绝对路径)
比如:
* * * * * rm -fr /mnt/* //每分钟执行一次对/mnt目录下文件的删除
*/2 * * * * rm -fr /mnt/* //每隔两分钟执行一次
*/2 08-17 1,15 3-5 3 rm -fr /mnt/* //在3-5月的每周三的1号和15号的8点到17点每隔两分钟执行

查看

crontab -e

https://crontab.guru/#13_*/1_*_*_*

https://www.cnblogs.com/perfe/p/6198213.html

python manage.py crontab remove/show/add

service crond status/restart/start/stop/reload/

crontab -l   #list all the scheduled tasks