admin管理员组文章数量:1339785
I'm a little bit confused as to how to create daemons in NodeJS
I've created daemons in C before that call fork()
that continue execution from where the call was made in a child process allowing the parent to terminate. I can't readily achieve the same affect using process.fork()
and process.kill()
.
The following code doesn't do what I expected and breaks:
var current_pid, cp = require('child_process');
current_pid = process.pid;
cp.fork('');
process.kill(current_pid);
The following error is emitted and I can't work out why or what's happening:
node.js:202
throw e; // process.nextTick error, or 'error' event on first tick
^
Error: read EBADF
at errnoException (net.js:589:11)
at Pipe.onread (net.js:335:20)
The problem call appears to be process.kill()
. Removing this, both processes continue to happily run.
I'm aware of daemon.node, but this was created at the time when child_process.fork()
didn't exist (v0.1.33 was the version available when daemon.node was written). Now there is a native way to fork, so this should no longer be necessary. (Plus, it appears to have been abandoned too.)
I'm a little bit confused as to how to create daemons in NodeJS
I've created daemons in C before that call fork()
that continue execution from where the call was made in a child process allowing the parent to terminate. I can't readily achieve the same affect using process.fork()
and process.kill()
.
The following code doesn't do what I expected and breaks:
var current_pid, cp = require('child_process');
current_pid = process.pid;
cp.fork('');
process.kill(current_pid);
The following error is emitted and I can't work out why or what's happening:
node.js:202
throw e; // process.nextTick error, or 'error' event on first tick
^
Error: read EBADF
at errnoException (net.js:589:11)
at Pipe.onread (net.js:335:20)
The problem call appears to be process.kill()
. Removing this, both processes continue to happily run.
I'm aware of daemon.node, but this was created at the time when child_process.fork()
didn't exist (v0.1.33 was the version available when daemon.node was written). Now there is a native way to fork, so this should no longer be necessary. (Plus, it appears to have been abandoned too.)
2 Answers
Reset to default 11child_process.fork()
has a totally misleading name and is not the same as C’s fork()
.
According to the docs, it executes a Node.js script as a child process and sets up a munications channel between the calling process and the child. That's it.
The actual spawning of the child process is done inside libuv, Node's “platform layer,” in C, and fork()
itself is not exposed to Node scripts.
A simple, much-improvable way to daemonize using only what’s built-in to Node.js might look like this:
if (process.argv[2] !== 'child') {
require('child_process').execFile(process.argv[0], [__filename, 'child']);
process.exit();
}
setTimeout(function(){
console.log('foo');
}, 5000);
Obviously, this is pretty different from fork()
. If daemon.node works for you, keep using it.
daemon.node continues to be developed at https://github./indexzero/daemon.node.
本文标签: javascriptForking in NodeJSStack Overflow
版权声明:本文标题:javascript - Forking in NodeJS - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743602879a2508859.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论