Django/Python 这个 cronjob 应该如何执行
我创建了一个简单的 python 脚本,允许我更新要在网站首页上显示的所选动物。
当我在 ssh 中时,我像这样运行它。
cd /www/site/mydirectory
python perform_daily_action.py
如何在我的 crontab 中将其作为 cronjob 运行。
我尝试这样做,
30 09 * * * cd /www/site/mydirectory;python perform_daily_action.py
虽然这似乎不起作用。
建议?
I created a simple python script that allows me to update a chosen animal to be displayed on the sites frontpage.
when I am in my ssh, I run it like this.
cd /www/site/mydirectory
python perform_daily_action.py
How do I run this in my crontab as a cronjob.
I tried to do
30 09 * * * cd /www/site/mydirectory;python perform_daily_action.py
Although this does not seem to work.
Suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
其他答案都很好,我只建议对 Python 解释器使用完整路径,因为 cron 环境可能与常规环境不同,并且在某些时候您可能想要切换到
virtualenv
然后你肯定需要virtualenv
文件夹中的Python
解释器。The other answers are great, I would only suggest using full path also for
Python
interpreter, becausecron
environment might be different than the regular one and also at some point you might want to switch tovirtualenv
and then you will definitely needPython
interpreter fromvirtualenv
folder.尝试用这个代替
Try use this instead
您必须提供完整的 python 位置(例如 /usr/bin/python)和/或者可能为您的机器提供一些有关 $PYTHONPATH 的指南。试试这个:
You must provide the full python location (for example /usr/bin/python) and/or perhaps give your machine some guidelines about your $PYTHONPATH. Try this: