Perl 不在 crontab 中执行
我的 perl 脚本没有在 crontab 中执行,
我不知道如何确认这一点,但我没有看到脚本结果或输出。
但在 cron 日志中我看到类似的条目 7 月 28 日 12:35:01 dvsbi-build crond[13469]: (root) CMD (PATH=/usr/local/bin:/usr/sbin/usr/lib perl /dm2/www/html/isos/preFCS5.3 /autodownload.pl)
并且我将 cron 作业设置为
35 12 * * 2-6 PATH=/usr/local/bin:/usr/sbin/usr/lib perl /dm2/www/html/isos/preFCS5.3/autodownload.pl
我无法看到 perl 脚本结果。在脚本中,我已将所有调试语句重定向到日志文件,但没有看到日志文件更新。
perl 脚本可以从终端中的任何位置手动运行良好,方法是提供如下路径:
perl /dm2/www/html....../autoDownload.pl
另外,我还给出了脚本内日志文件的完整路径。
my perl script is not executing in crontab,
I dont know how to confirm this but Im not seeing the script result or output.
But in the cron log I see a entry like
Jul 28 12:35:01 dvsbi-build crond[13469]: (root) CMD (PATH=/usr/local/bin:/usr/sbin/usr/lib perl /dm2/www/html/isos/preFCS5.3/autodownload.pl)
And I set the cron job as
35 12 * * 2-6 PATH=/usr/local/bin:/usr/sbin/usr/lib perl /dm2/www/html/isos/preFCS5.3/autodownload.pl
Im not able to see the perl script result. In script I have redirected all the debug statements to a LOG file and I dont see the log file update.
the perl script run fine manually from anywhere in terminal by giving path like
perl /dm2/www/html....../autoDownload.pl
Also I have given full path to the log files inside the script.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该在 cron 中使用 perl 的完整路径。 cron 的某些实现限制环境变量的使用。
尝试使用 sergio 评论的
which perl
来找出 perl 在你的系统上的位置。鉴于 perl 位于 /usr/bin 中,请尝试以下操作:
You should use the full path to perl in cron. Some implementations of cron restrict usage of environment variables.
Try to find out where perl is located on your system with
which perl
like sergio commented.Given perl is in /usr/bin try the following: