每 1 分钟运行一次 Python 脚本的 Cron 作业

每 1 分钟运行一次 Python 脚本的 Cron 作业

我知道这个问题已经回答了很多次了。我参考了 heemayls 的回答发布来设置 cron 作业。但是,它不起作用。知道哪里出了问题吗?

*/1 * * * * /usr/bin/env python3 /home/me/DownloadImages1.0.py

以下是输出crontab -l

# Edit this file to introduce tasks to be run by cron.
# 
# Each task to run has to be defined through a single line
# indicating with different fields when the task will be run
# and what command to run for the task
# 
# To define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').# 
# Notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
# 
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
# 
# For example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
# 
# For more information see the manual pages of crontab(5) and cron(8)
# 
# m h  dom mon dow   command
*/1 * * * * /usr/bin/env python3 /home/me/DownloadImages1.0.py

答案1

您需要告诉脚本您希望脚本运行哪个显示,否则它将不会运行。

使用如下命令:

*/1 * * * * DISPLAY=:0.0 /usr/bin/env python3 /home/me/DownloadImages1.0.py

你也可以使用全局 DISPLAY 变量,只需将其放在 cronjobs 列表的顶部即可

# m h  dom mon dow   command
DISPLAY=:0.0
*/1 * * * * /usr/bin/env python3 /home/me/DownloadImages1.0.py

您还可以通过从 bash 脚本导出变量来调用 DISPLAY

#!/bin/bash
export DISPLAY=":0.0"
/usr/bin/env python3 /home/me/DownloadImages1.0.py

答案2

对我来说什么都不起作用,因为无论我在做什么,或者你上面写的 cron 作业都是正确的。

*/1 * * * * /usr/bin/env python3 /home/me/DownloadImages1.0.py

在我的案例中,问题出在其他一些我从未想象过的地方,因为当我在终端上执行相同的 python 脚本时,它可以正常运行。

python3 /home/me/DownloadImages1.0.py

直到我读到一些文章说,crontab 版本运行如下:sudo su

当我python3 /home/me/DownloadImages1.0.py在 中运行时sudo su,它开始给出未安装库的错误。在我在其pip3 install xxx内部安装库之后sudo su,它command成功运行。

之后,crontab也成功运行。

简而言之,请尝试以下操作 -

1-创建hello.py

print('hello')

2-编写一个 cron 作业来执行上述 python 脚本并输出到某个日志文件,以验证您的 crontab 是否确实在没有任何 python 依赖的情况下运行。

sudo touch /home/me/out.txt
sudo crontab -e
1 (put next minute here) * * * * /usr/bin/env python3 /home/me/DownloadImages1.0.py > /home/me/out.txt

3-检查 crontab 的日志

tail -f /var/log/syslog | grep cron -i

hello.py执行脚本后,检查out.txt文件。如果文件有内容,则一切正常(此答案仅当 out.txt 中有输出时才有效)。

4- sudo su 5- 使以下命令成功运行。

tail -f /var/log/syslog | grep cron -i

6-现在,您的 cron 作业*/1 * * * * /usr/bin/env python3 /home/me/DownloadImages1.0.py应该可以成功运行。

相关内容