Crontab和PATH

时间:2016-01-02 09:52:49

标签: php path cron

这是我的crontab:

SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=""

# m h dom mon dow user  command
17 *    * * *   root    cd / && run-parts --report /etc/cron.hourly
25 6    * * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6    * * 7   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6    1 * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
# PHP Script
26 16     * * *   root  /usr/bin/php /var/www/script.php
#

为什么我应该把完整的php路径(/ usr / bin / php)放在PATH变量中呢?否则脚本不起作用。

1 个答案:

答案 0 :(得分:0)

因为crontab在用户下运行,其他值为PATH。有关详细信息:https://askubuntu.com/questions/219692/why-the-value-of-path-is-different-for-root-and-normal-user