Perl 不在 crontab 中执行

发布于 2024-11-26 15:41:33 字数 601 浏览 0 评论 0原文

我的 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 技术交流群。

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

发布评论

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

评论(1

世俗缘 2024-12-03 15:41:33

您应该在 cron 中使用 perl 的完整路径。 cron 的某些实现限制环境变量的使用。

尝试使用 sergio 评论的 which perl 来找出 perl 在你的系统上的位置。

鉴于 perl 位于 /usr/bin 中,请尝试以下操作:

35 12 * * 2-6 /usr/bin/perl /dm2/www/html/isos/preFCS5.3/autodownload.pl

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:

35 12 * * 2-6 /usr/bin/perl /dm2/www/html/isos/preFCS5.3/autodownload.pl
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文