Node.js 脚本正在运行,但它不会停止!
我在 CentOS 5 下的 Node.js 中运行了这个 test.js。它工作得很好。问题是,它不会停止!即使关闭我的 ssh 客户端后,它也不会停止。
如何停止正在运行的脚本?
I have this test.js running in Node.js under CentOS 5. It works perfectly. Problem is, it won't stop! Even after closing my ssh client, it won't stop.
How can I stop a running script?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不
适合你吗?
Doesn't
work for you?
您运行的代码是什么,如果是nodejs.net首页提供的示例代码,那么当您在终端中并且服务器正在运行时,您只需按 CTRL + C< /kbd> 停止当前任务
如果您通过 SSH 并且希望发出命令来停止节点进程,则执行如下操作:
这只是找到节点进程的 PID,然后杀死它们
What is the code your running, if it's the Sample code provided by nodejs.net's front-page then when your in your terminal and your server is running, you can just hit CTRL + C to stop the current task
If you are over SSH And you wish to issue a command to stop the node processes then do something like so:
That's just finding the PID's of the Node Processes and then killing them