Cron 找不到 PHP

发布于 2024-12-10 20:36:03 字数 306 浏览 0 评论 0原文

我将我的 cronjob 设置为:

 */5 * * * * /usr/local/lib/php /home/..app/webroot/cron_dispatcher.php /devices/checkForAlert

而在设备控制器的 checkForAlert 函数中,我刚刚打印了“hi”,但来自 cronjob 的邮件仅包含此内容,

/bin/sh: /usr/local/lib/php: is a directory

您能告诉我这里出了问题吗?

I am setting my cronjob as:

 */5 * * * * /usr/local/lib/php /home/..app/webroot/cron_dispatcher.php /devices/checkForAlert

whereas in checkForAlert function of devices controller i’ve just printed ‘hi’ but mail from cronjob only contains this

/bin/sh: /usr/local/lib/php: is a directory

Can you please tell me that is going wrong here…

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

扎心 2024-12-17 20:36:03

要拥有可移植的解决方案,您可以使用 env

 */5 * * * * /usr/bin/env php /home/..app/webroot/cron_dispatcher.php /devices/checkForAlert

To have a portable solution you can use env :

 */5 * * * * /usr/bin/env php /home/..app/webroot/cron_dispatcher.php /devices/checkForAlert
秋凉 2024-12-17 20:36:03
/usr/local/lib/php: is a directory

您提供了名为 php 的目录的路径,而不是 php 二进制文件的路径。

尝试输入 whereis php 并将上述路径替换为返回的路径:

> whereis php
php: /usr/bin/php /usr/share/man/man1/php.1.gz

例如,上面输出中的路径为 /usr/bin/php

/usr/local/lib/php: is a directory

You have provided the path to a directory called php, rather than the php binary.

Try typing whereis php and replacing the above path with the one returned:

> whereis php
php: /usr/bin/php /usr/share/man/man1/php.1.gz

For example, that would be /usr/bin/php in the above output.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文