sh pig 命令未找到

发布于 2024-11-08 01:02:19 字数 160 浏览 4 评论 0原文

我设置了一个定期运行 php 脚本的 crontab。 php 脚本使用 exec() 运行 Pig 脚本。

但是我收到此错误消息:

sh:pig:找不到命令

这该如何解决?

I setup a crontab that run a php script regularly. The php script runs a pig script using exec().

However I get this error message:

sh: pig: command not found

How can this be solved?

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

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

发布评论

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

评论(2

离去的眼神 2024-11-15 01:02:19

您可以从命令行正常运行 pig 吗?如果是这样,请运行 whereis pig 来获取完整路径并在 crontab 条目中使用它。如果没有,请安装它(使用操作系统上正常的任何方法/包管理器。

Can you run pig normally, from the command line? If so, run whereis pig to get the full path and use that in the crontab entry. If not, install it (using whatever method/package manager is normal on your OS.

不知在何时 2024-11-15 01:02:19

看起来您的第一个问题是无法在 crontab 中找到 pig 路径,因为错误是“sh:pig:找不到命令”。您的本地环境中可能有一个 PATH 变量,该变量不再存在于您的 cron 环境中,请尝试使用 cron 中的 pig 脚本的绝对路径。

Looks like your first issue is not able to find the pig path in the crontab since the error is "sh: pig: command not found". You might have a PATH variable in your local environment which is no longer present in your cron environment, try with absolute path to the pig script in your cron.

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