sh pig 命令未找到
我设置了一个定期运行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以从命令行正常运行
pig
吗?如果是这样,请运行whereis pig
来获取完整路径并在 crontab 条目中使用它。如果没有,请安装它(使用操作系统上正常的任何方法/包管理器。Can you run
pig
normally, from the command line? If so, runwhereis 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.看起来您的第一个问题是无法在 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.