Python crontab 脚本似乎不起作用。当我手动运行它时,
python /home/ec2-user/code1.py
它工作正常,但是当放入 crontab 的 cron.txt 文件时,没有。
我的 crontab 文件是:
@hourly python /home/ec2-user/code1.py >/dev/null 2>&1
我也试过
0 * * * * python /home/ec2-user/code1.py >/dev/null 2>&1
但两者都没有多少运气。
sudo crontab -l
@hourly python /home/ec2-user/code1.py >/dev/null 2>&1
显示一切功能。我试过Crontab 不运行我的 python 脚本,并且其他人也没有太多运气。
编辑:
和
PATH=/opt/python2.7/bin
MAILTO=my@email
*/5 * * * * /home/ec2-user/code1.py
我收到的电子邮件是:
/bin/sh: /home/ec2-user/code1.py : No such file or directory
但是我可以打开和编辑文件没问题。我尝试了许多不同的东西,但归结为:cron 看不到文件。
感觉就像我经历了整个https://askubuntu.com/questions/23009/reasons-why-crontab-does-not-work 仍然没有运气