table of contents
| SUPERVISE-DAEMON(8) | System Manager's Manual (smm) | SUPERVISE-DAEMON(8) |
NAME¶
supervise-daemon —
starts a daemon and restarts it if it crashes
SYNOPSIS¶
supervise-daemon |
servicename -a,
--healthcheck-timer seconds
-A, --healthcheck-delay
seconds -D,
--respawn-delay duration
-d, --chdir
path -e,
--env var=value
-g, --group
group -I,
--ionice arg
-k, --umask
value --notify
fd:num
-m, --respawn-max
count -N,
--nicelevel level
--oom-score-adj adj
-p, --pidfile
supervisorpidfile -P,
--respawn-period duration
--respawn-delay-step
duration --respawn-delay-cap
duration -R,
--retry arg
-r, --chroot
chrootpath -u,
--user user
-0, --stdin
file -1,
--stdout logfile
-2, --stderr
logfile -S,
--start daemon
[--] [arguments] |
supervise-daemon |
servicename -K, --stop
daemon -r,
--chroot chrootpath |
supervise-daemon |
servicename -s, --signal
signal -r,
--chroot chrootpath |
DESCRIPTION¶
supervise-daemon provides a consistent
method of starting, stopping and restarting daemons. If
-K, --stop or
-s, --signal is not
provided, then we assume we are starting the daemon.
supervise-daemon only works with daemons which do
not fork. If your daemon has options to tell it not to fork, it should be
configured to not fork.
Here are the options to specify the daemon and how it should start or stop:
-u,--useruser[:group]- Start the daemon as the user and update $HOME accordingly or stop daemons owned by the user. You can optionally append a group name here also.
-v,--verbose- Print the action(s) that are taken just before doing them.
The options are as follows:
-a,--healthcheck-timerseconds- Run the healthcheck() command, possibly followed by the unhealthy() command every time this number of seconds passes.
-A,--healthcheck-delayseconds- Wait this long before the first health check.
-D,--respawn-delayduration- Wait for the specified duration before restarting a daemon after it crashes. The default is 0. Duration is an integer optionally followed by a unit. Supported units are: ms, sec, min, hour (defaults to sec if none is provided).
-d,--chdirpath- chdir to this directory before starting the daemon.
-e,--envVAR=VALUE- Set the environment variable VAR to VALUE.
-g,--groupgroup- Start the daemon as in the group.
-I,--ioniceclass[:data]- Modifies the IO scheduling priority of the daemon. Class can be 0 for none, 1 for real time, 2 for best effort and 3 for idle. Data can be from 0 to 7 inclusive.
-k,--umaskmode- Set the umask of the daemon.
--notifyfd:num | socket:ready- Open file descriptor num as a pipe, and waits until the daemon writes a newline to it before exiting. Or waits for READY=1 in the datagram socket opened at $NOTIFY_SOCKET.
-m,--respawn-maxcount- Sets the maximum number of times a daemon will be respawned. If a daemon
crashes more than this number of times,
supervise-daemonwill give up and exit. The default is 10 and 0 means unlimited.If respawn-period is also set, more than respawn-max crashes must occur during respawn-period seconds to cause
supervise-daemonto give up and exit. -p,--pidfilesupervisorpidfile- Sets a path for the supervisor's pid file. Note that this is not the pid file of the process that is being supervised.
-N,--nicelevellevel- Modifies the scheduling priority of the daemon.
--oom-score-adjadj- Modifies the OOM score adjustment of the daemon.
-P,--respawn-periodduration- Sets the duration of a respawn period. See the description of --respawn-max and --respawn-delay for more information. Default is 12sec.
--respawn-delay-stepduration- Increase the respawn-delay by duration with every retry within respawn-period. Default is 128ms.
--respawn-delay-capduration- Set the maximum respawn-delay duration. Only active if --respawn-delay-step is above 0. Default is 30sec.
-R,--retrytimeout | signal/timeout- The retry specification can be either a timeout in seconds or multiple signal/timeout pairs (like SIGTERM/5). If this option is not given, the default is SIGTERM/5.
-r,--chrootpath- chroot to this directory before starting the daemon. All other paths, such as the path to the daemon and chdir should be relative to the chroot.
-,--signalsignal- Instruct a supervisor to signal the process it is supervising. The process to communicate with is determined by the name of the service taken from the RC_SVCNAME environment variable.
-u,--useruser- Start the daemon as the specified user.
-0,--stdinfile- Redirect the standard input of the process to file. Must be an absolute
pathname, but relative to the path optionally given with
-r,--chroot. The file can also be a named pipe. Input redirection assumes that the file exists already while output redirection via-1,--stdoutor-1,--stderrcreates it, if it doesn't. -1,--stdoutlogfile- The same thing as
-0,--stdinbut with the standard output. -2,--stderrlogfile- The same thing as
-1,--stdoutbut with the standard error output. --stdout-loggercmd- Run cmd as a child process redirecting the standard output to the standard
input of cmd when started with
-background. Cmd must be an absolute pathname, but relative to the path optionally given with-r,--chroot. This process must be prepared to accept input on stdin and be able to log it or send it to another location. --stderr-loggercmd- Run cmd as a child process and Redirect the standard error of the process
to the standard input of cmd when started with
-background. Cmd must be an absolute pathname, but relative to the path optionally given with-r,--chroot. This process must be prepared to accept input on stdin and be able to log it or send it to another location. --capabilitiescap-list- Start the daemon with the listed inheritable, ambient and bounding capabilities. The format is the same as in cap_iab(3).
--secbitssec-bits- Set the security-bits for the program. The numeric value of the security-bits can be found in <sys/secbits.h> header file. The format is the same as in strtoul(3).
--no-new-privs- Set the No New Privs flag for the program. See PR_SET_NO_NEW_PRIVS prctl(2).
ENVIRONMENT¶
SSD_IONICELEVEL can also set the IO scheduling priority of the daemon, but the command line option takes precedence.
SSD_NICELEVEL can also set the scheduling priority of the daemon, but the command line option takes precedence.
SSD_OOM_SCORE_ADJ can also set the OOM score adjustment of the daemon, but the command line option takes precedence.
NOTE¶
supervise-daemon uses
getopt(3) to parse its options, which allows it to accept
the `--' option which will cause it to stop processing options at that
point. Any subsequent arguments are passed as arguments to the daemon to
start and used when finding a daemon to stop or signal.
NOTE¶
If respawn-delay, respawn-max and respawn-period are not set correctly, it is possible to trigger a situation in which the supervisor will infinitely try to respawn a daemon. To avoid this, if you change the values of --respawn-delay, --respawn-max or --respawn-period, always make sure the settings make sense. For example, a respawn period of 5 seconds with a respawn max of 10 and a respawn delay of 1 second leads to infinite respawning since there can never be 10 respawns within 5 seconds.
NOTE¶
Invoking supervise-daemon requires both the RC_SVCNAME environment variable to be set and the name of the service as the first argument on the command line, so it is best to invoke it inside a service script rather than manually.
SEE ALSO¶
HISTORY¶
supervise-daemon first appeared in
Debian.
This is a complete re-implementation with the process finding code in the OpenRC library (librc, -lrc) so other programs can make use of it.
AUTHORS¶
William Hubbs <w.d.hubbs@gmail.com>
| April 27, 2016 | OpenRC |