0.0.15 • Published 10 years ago

node-daemon v0.0.15

Weekly downloads
4
License
-
Repository
github
Last release
10 years ago

node-daemon runs a specified node.js script in a daemonized cluster (using daemon and cluster modules). By default, it spawns as many worker processes as there are CPUs.

Worker needs not to know anything about being run under cluster. Its stdin and stdout are intercepted and written to log files.

Failing workers are respawned, unless they exit cleanly, or fail to run at all. Daemon terminates when no running workers are left.

The daemon opens a controlling socket, through which commands like reload or stop can be issued. Accompanying node-daemon-ctl utility is provided for this.

Command line options

-h, --help             Display help and exit
--daemon               Daemonize (use --no-daemon to stay in foreground) - default: true
-v, --loglevel One of: debug, info, notice, warning, error, crit, alert, emerg  Set log level - default: info
-l, --logfile String   Log file - default: ./node-daemon.log
-e, --errorlog String  Error log - default: ./node-daemon.err
-p, --pidfile String   PID file - default: ./node-daemon.pid
-s, --socket String    Controlling socket - default: ./node-daemon.socket
-n, --workers Int      How many workers to fork (defaults to # of CPUs)
-w, --worker String    Path to worker - default: ./worker

Unix signals

The daemon also reacts to Unix signals

  • SIGINT and SIGTERM stop the daemon (gracefully)
  • SIGHUP stops all workers and then respawns them. Can be used if the worker file was changed. Note: this does not restart the daemon itself. If the worker file contains errors, it will fail to spawn, and the master process will exit.

Bugs

To do:

  • Implement logging to syslog
0.0.15

10 years ago

0.0.14

10 years ago

0.0.13

10 years ago

0.0.12

10 years ago

0.0.11

10 years ago

0.0.10

10 years ago

0.0.9

10 years ago

0.0.8

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago