通过网络运行 crontab 会出现错误,指出没有人无权运行 crontab
我很难让它发挥作用。我到处都找遍了。情况是这样的。
我在共享环境中托管。我正在动态创建一个 crontab 文件并尝试使用 exec 命令执行。当我通过 telnet 执行此操作时,一切运行正常,但是当我运行运行此 exec 命令的 php 文件时,我收到一条错误消息,指出
“不允许您(任何人)使用此程序 (/usr/bin/crontab)
”我是否确保我(没有人)有权运行此 crontab 命令?
I'm having such a hard time getting this to work. I have looked all over the place. Here's the situation.
I'm hosting in a shared environment. I am dynamically creating a crontab file and trying to execute is using exec command. Everything runs fine when I do this via telnet but when I run my php file that runs this exec command, I get an error saying that
"You (nobody) are not allowed to use this program (/usr/bin/crontab)"
How do I make sure I (nobody) have access to run this crontab command.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
系统管理员可能通过在 /etc/cron.deny 中列出用户 nobody 来禁止使用 cron。
The sysadmin might have forbidden use of cron by listing the user nobody in /etc/cron.deny.