1

我在执行crontab作业时遇到问题。我想我已经正确配置了所有东西,但是当我输入:
*/2 * * * * /var/www/site/executescript.sh
crontab -e
我的脚本根本没有被执行.. 我唯一得到的cron.log是:

Feb 15 10:22:35 server crontab[2222]: (root) BEGIN EDIT (root)
Feb 15 10:22:45 server crontab[2222]: (root) REPLACE (root)
Feb 15 10:22:45 server crontab[2222]: (root) END EDIT (root)
Feb 15 10:26:24 server crontab[2329]: (root) BEGIN EDIT (root)
Feb 15 10:27:17 server crontab[2329]: (root) REPLACE (root)
Feb 15 10:27:17 server crontab[2329]: (root) END EDIT (root)
Feb 15 10:29:34 server crontab[2415]: (root) BEGIN EDIT (root)
Feb 15 10:29:53 server crontab[2415]: (root) REPLACE (root)
Feb 15 10:29:53 server crontab[2415]: (root) END EDIT (root)

这意味着 cron 甚至没有尝试执行我的脚本。有谁知道这与什么有关?这是否意味着我的脚本中有错误(我没有看到一个..)有没有地方可以检查更准确的 cron 日志?

我的 cron 版本是 v5.0

4

1 回答 1

1

您需要定义执行脚本的二进制文件。试试这个:

*/2 * * * * /bin/sh /var/www/site/executescript.sh in 
于 2013-02-15T10:53:31.203 回答