Cronjob不会在Google Compute Engine上运行

时间:2017-03-20 07:50:57

标签: google-app-engine cron crontab google-compute-engine

我在Google Cloud的计算引擎实例中设置了一个cron作业。

假设每天早上7:47运行。但是每次我检查文件是否在7:48执行时都不起作用。

enter image description here

helloworld.sh文件的代码在这里

echo "helloworld" + "$(date)" > helloworld.txt

我已将root设置为root,并将root作为root用户设置为cron作业。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

cron作业错误,因为您需要在命令中使用绝对路径。尝试:

/bin/bash /home/username/helloworld.sh