Django/Python 这个 cronjob 应该如何执行

发布于 2024-10-26 14:44:15 字数 353 浏览 6 评论 0原文

我创建了一个简单的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

没有伤那来痛 2024-11-02 14:44:15

其他答案都很好,我只建议对 Python 解释器使用完整路径,因为 cron 环境可能与常规环境不同,并且在某些时候您可能想要切换到 virtualenv 然后你肯定需要 virtualenv 文件夹中的 Python 解释器。

The other answers are great, I would only suggest using full path also for Python interpreter, because cron environment might be different than the regular one and also at some point you might want to switch to virtualenv and then you will definitely need Python interpreter from virtualenv folder.

孤檠 2024-11-02 14:44:15

尝试用这个代替

30    09    *    *    *    python /www/site/mydirectory/perform_daily_action.py

Try use this instead

30    09    *    *    *    python /www/site/mydirectory/perform_daily_action.py
若水般的淡然安静女子 2024-11-02 14:44:15

您必须提供完整的 python 位置(例如 /usr/bin/python)和/或者可能为您的机器提供一些有关 $PYTHONPATH 的指南。试试这个:

30    09    *    *    * export PYTHONPATH=/www/site/mydirectory:.:$PYTHONPATH && /usr/bin/python /www/site/mydirectory/perform_daily_action.py

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:

30    09    *    *    * export PYTHONPATH=/www/site/mydirectory:.:$PYTHONPATH && /usr/bin/python /www/site/mydirectory/perform_daily_action.py
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文