如何为 Node.js 运行 Cron 作业
我有一个调用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
谢谢..我发现了..
我需要指定节点路径或
在 sh 脚本中执行此操作:
其中 nodejs/node 是节点安装的位置。
thanks.. I find it out..
either I need to specify the node path or
do that in the sh script:
where nodejs/node is where the node installed.