本文介绍了Django/Python 这个 cronjob 应该如何执行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我创建了一个简单的 Python 脚本,允许我更新要在网站首页上显示的选定动物.
I created a simple python script that allows me to update a chosen animal to be displayed on the sites frontpage.
当我在我的 ssh 中时,我是这样运行的.
when I am in my ssh, I run it like this.
cd /www/site/mydirectory
python perform_daily_action.py
如何在我的 crontab 中将其作为 cronjob 运行.
How do I run this in my crontab as a cronjob.
我尝试过
30 09 * * * cd /www/site/mydirectory;python perform_daily_action.py
虽然这似乎不起作用.
建议?
推荐答案
试试用这个代替
30 09 * * * python /www/site/mydirectory/perform_daily_action.py
这篇关于Django/Python 这个 cronjob 应该如何执行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!