如何防止子节点进程被父节点进程杀死?

发布于 2025-01-06 04:36:10 字数 117 浏览 0 评论 0原文

我使用 child_process.spawn/child_process.fork 从 node.js 应用程序启动多个子进程。当使用 Ctrl-C 停止父进程时,子进程也会停止。有没有一种优雅的方法来保持子进程运行?

I'm using child_process.spawn/child_process.fork to start a number of child processes from a node.js application. When stopping the parent process with Ctrl-C the child processes are stopped too. Is there an elegant way to keep the child processes running?

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

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

发布评论

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

评论(2

醉城メ夜风 2025-01-13 04:36:10

您可以尝试在您的孩子中捕获 SIGINT

// child.js
process.on("SIGINT", function() { console.log("sigint caught") });

// parent.js
var fork = require("child_process").fork,
    child = fork(__dirname + "/child.js");

运行 parent.js 并按 ^C。您的 child.js 应继续在后台运行。我不知道这在 child.js 的生命周期中会产生什么影响。

这是关于 Node.js 邮件主题的富有启发性的讨论,尽管已经很老了列表

You could try catching SIGINT in your child:

// child.js
process.on("SIGINT", function() { console.log("sigint caught") });

// parent.js
var fork = require("child_process").fork,
    child = fork(__dirname + "/child.js");

Run parent.js and press ^C. Your child.js should continue running in the background. I don't know what the effects of this will be during the lifetime of child.js.

Here is an enlightening, albeit pretty old, discussion of the topic on the node.js mailing list.

雨落星ぅ辰 2025-01-13 04:36:10

您可以在父进程中调用 childprocess.disconnect(); 或在子进程中调用 process.disconnect();

You could call childprocess.disconnect(); in the parent or process.disconnect(); in the child.

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