Node.js 脚本正在运行,但它不会停止!

发布于 2024-11-17 12:45:38 字数 124 浏览 2 评论 0原文

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

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

发布评论

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

评论(2

月牙弯弯 2024-11-24 12:45:38

$ pkill node

适合你吗?

Doesn't

$ pkill node

work for you?

永不分离 2024-11-24 12:45:38

您运行的代码是什么,如果是nodejs.net首页提供的示例代码,那么当您在终端中并且服务器正在运行时,您只需按 CTRL + C< /kbd> 停止当前任务

如果您通过 SSH 并且希望发出命令来停止节点进程,则执行如下操作:

$ ps aux | grep node
USR  PID  1.5  0.2  44172  8260 pts/2    S    15:25   0:00 node app.js
$ kill -2 PID

这只是找到节点进程的 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:

$ ps aux | grep node
USR  PID  1.5  0.2  44172  8260 pts/2    S    15:25   0:00 node app.js
$ kill -2 PID

That's just finding the PID's of the Node Processes and then killing them

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