如何为 Node.js 运行 Cron 作业

发布于 2024-10-15 23:25:51 字数 360 浏览 5 评论 0原文

我有一个调用 shell 脚本的 cron 作业。

*/2 * * * * sh cron_test.sh >> output.log

在 shell 脚本中,我运行一些命令行,例如:

#!/usr/bin

./mongo/bin/mongodump .....

FILE_NAME='abc'

node mynode.js $FILENAME

如果我在命令提示符中调用 cron_test.sh,它就会运行。但是,如果由 cronjob 运行,则它不会运行节点。它确实运行 mongodump 命令。那么,出了什么问题呢?有什么我必须设置的许可等吗?

I have a cron job that call a shell script.

*/2 * * * * sh cron_test.sh >> output.log

In side the shell script, I run some command lines like:

#!/usr/bin

./mongo/bin/mongodump .....

FILE_NAME='abc'

node mynode.js $FILENAME

It runs if I just call cron_test.sh in command prompt. However, it doesn't run node if it is run by cronjob. It does run the mongodump command. So, what's wrong? is there anything I have to set for permission, etc?

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

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

发布评论

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

评论(1

涫野音 2024-10-22 23:25:51

谢谢..我发现了..

我需要指定节点路径或
在 sh 脚本中执行此操作:

nodejs/node myscript.js

其中 nodejs/node 是节点安装的位置。

thanks.. I find it out..

either I need to specify the node path or
do that in the sh script:

nodejs/node myscript.js

where nodejs/node is where the node installed.

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