2015-12-05 04:22:19 +05:30
|
|
|
.\" Copyright (c) 2007-2015 The OpenRC Authors.
|
|
|
|
.\" See the Authors file at the top-level directory of this distribution and
|
2021-12-21 06:37:00 +05:30
|
|
|
.\" https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
|
2007-12-17 15:44:54 +05:30
|
|
|
.\"
|
2015-12-05 04:22:19 +05:30
|
|
|
.\" This file is part of OpenRC. It is subject to the license terms in
|
|
|
|
.\" the LICENSE file found in the top-level directory of this
|
2021-12-21 06:37:00 +05:30
|
|
|
.\" distribution and at https://github.com/OpenRC/openrc/blob/HEAD/LICENSE
|
2015-12-05 04:22:19 +05:30
|
|
|
.\" This file may not be copied, modified, propagated, or distributed
|
|
|
|
.\" except according to the terms contained in the LICENSE file.
|
2007-12-17 15:44:54 +05:30
|
|
|
.\"
|
2009-12-14 14:17:48 +05:30
|
|
|
.Dd December 14, 2009
|
2007-12-17 15:44:54 +05:30
|
|
|
.Dt START-STOP-DAEMON 8 SMM
|
|
|
|
.Os OpenRC
|
|
|
|
.Sh NAME
|
|
|
|
.Nm start-stop-daemon
|
|
|
|
.Nd ensures that daemons start and stop
|
|
|
|
.Sh SYNOPSIS
|
|
|
|
.Nm
|
|
|
|
.Fl S , -start
|
|
|
|
.Ar daemon
|
|
|
|
.Op Fl -
|
|
|
|
.Op Ar arguments
|
|
|
|
.Nm
|
|
|
|
.Fl K , -stop
|
|
|
|
.Ar daemon
|
|
|
|
.Nm
|
|
|
|
.Fl s , -signal
|
|
|
|
.Ar signal
|
|
|
|
.Ar daemon
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
.Nm
|
2010-01-08 14:09:25 +05:30
|
|
|
provides a consistent method of starting, stopping and signaling daemons.
|
2008-07-27 17:00:49 +05:30
|
|
|
If neither
|
|
|
|
.Fl K , -stop
|
|
|
|
nor
|
|
|
|
.Fl s , -signal
|
|
|
|
are provided, then we assume we are starting the daemon.
|
2007-12-17 15:44:54 +05:30
|
|
|
If a daemon cannot background by itself, nor create a pidfile,
|
|
|
|
.Nm
|
|
|
|
can do it for the daemon in a secure fashion.
|
|
|
|
.Pp
|
2007-04-05 16:48:42 +05:30
|
|
|
If
|
2007-12-17 15:44:54 +05:30
|
|
|
.Nm
|
|
|
|
is used in an OpenRC service, then OpenRC can in turn check to see if the
|
|
|
|
daemon is still running. If not, then the service is marked as crashed.
|
|
|
|
.Pp
|
|
|
|
Here are the options to specify the daemon and how it should start or stop:
|
2012-01-22 05:47:42 +05:30
|
|
|
.Bl -tag -width indent
|
2007-12-17 15:44:54 +05:30
|
|
|
.It Fl x , -exec Ar daemon
|
2008-02-25 04:39:15 +05:30
|
|
|
The
|
|
|
|
.Ar daemon
|
|
|
|
we start or stop.
|
2008-07-27 17:00:49 +05:30
|
|
|
If this option is not specified, then the first non option argument
|
|
|
|
is used.
|
2007-12-17 15:44:54 +05:30
|
|
|
.It Fl p , -pidfile Ar pidfile
|
2008-02-25 04:39:15 +05:30
|
|
|
When starting, we expect the daemon to create a valid
|
|
|
|
.Ar pidfile
|
2016-12-05 23:53:37 +05:30
|
|
|
within a reasonable amount of time. When stopping we only stop the first pid
|
2008-02-25 04:39:15 +05:30
|
|
|
listed in the
|
|
|
|
.Ar pidfile .
|
2007-12-17 15:44:54 +05:30
|
|
|
.It Fl n , -name Ar name
|
2008-02-25 04:39:15 +05:30
|
|
|
Match the process
|
|
|
|
.Ar name
|
|
|
|
instead of a pidfile or executable.
|
2009-04-22 16:19:07 +05:30
|
|
|
.It Fl i , -interpreted
|
|
|
|
When matching process name, we should ensure that the correct interpreter
|
|
|
|
is also matched.
|
|
|
|
So if the daemon foo starts off like so
|
|
|
|
.D1 #!/usr/bin/perl -w
|
|
|
|
then
|
|
|
|
.Nm
|
|
|
|
matches the process
|
|
|
|
.D1 /usr/bin/perl -w foo
|
2010-01-08 14:09:25 +05:30
|
|
|
If an interpreted daemon changes its process name then this won't work.
|
2007-12-17 15:44:54 +05:30
|
|
|
.It Fl u , -user Ar user Ns Op : Ns Ar group
|
2008-02-25 04:39:15 +05:30
|
|
|
Start the daemon as the
|
|
|
|
.Ar user
|
|
|
|
and update $HOME accordingly or stop daemons
|
|
|
|
owned by the user. You can optionally append a
|
|
|
|
.Ar group
|
|
|
|
name here also.
|
2007-12-17 15:44:54 +05:30
|
|
|
.It Fl t , -test
|
|
|
|
Print the action(s) that would be taken, but don't actually do anything.
|
|
|
|
The return value is set as if the command was taken and worked.
|
2008-09-22 15:07:28 +05:30
|
|
|
.It Fl v , -verbose
|
|
|
|
Print the action(s) that are taken just before doing them.
|
2009-09-04 20:11:08 +05:30
|
|
|
.It Fl P , -progress
|
|
|
|
Echo a . to the console for each second elapsed whilst waiting.
|
2007-12-17 15:44:54 +05:30
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
These options are only used for starting daemons:
|
|
|
|
.Bl -tag -width indent
|
2008-07-27 17:00:49 +05:30
|
|
|
.It Fl a , -startas Ar name
|
|
|
|
Change the process name of the daemon to
|
|
|
|
.Ar name .
|
|
|
|
This just changes the first argument passed to the daemon.
|
2007-12-17 15:44:54 +05:30
|
|
|
.It Fl b , -background
|
|
|
|
Force the daemon into the background. Some daemons don't create pidfiles, so a
|
|
|
|
good trick is to get the daemon to run in the foreground, and use the this
|
|
|
|
option along with
|
|
|
|
.Fl m , -make-pidfile
|
|
|
|
to create a working pidfile.
|
|
|
|
.It Fl d , -chdir Ar path
|
|
|
|
chdir to this directory before starting the daemon.
|
|
|
|
.It Fl r , -chroot Ar path
|
|
|
|
chroot to this directory before starting the daemon. All other paths, such
|
|
|
|
as the path to the daemon, chdir and pidfile, should be relative to the chroot.
|
2009-01-01 20:02:09 +05:30
|
|
|
.It Fl c , -chuid Ar user
|
|
|
|
Same as the
|
|
|
|
.Fl u , -user
|
|
|
|
option.
|
2008-02-17 16:47:48 +05:30
|
|
|
.It Fl e , -env Ar VAR=VALUE
|
|
|
|
Set the environment variable VAR to VALUE.
|
2007-12-17 15:44:54 +05:30
|
|
|
.It Fl g , -group Ar group
|
|
|
|
Start the daemon as in the group.
|
2008-08-20 15:32:11 +05:30
|
|
|
.It Fl k , -umask Ar mode
|
|
|
|
Set the umask of the daemon.
|
2007-12-17 15:44:54 +05:30
|
|
|
.It Fl m , -make-pidfile
|
|
|
|
Saves the pid of the daemon in the file specified by the
|
|
|
|
.Fl p , -pidfile
|
|
|
|
option. Only useful when used with daemons that run in the foreground and
|
|
|
|
forced into the background with the
|
2021-02-02 15:33:22 +05:30
|
|
|
.Fl b , -background
|
2007-04-05 16:48:42 +05:30
|
|
|
option.
|
2009-12-14 14:17:48 +05:30
|
|
|
.It Fl I , -ionice Ar class Ns Op : Ns Ar 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.
|
2014-06-21 12:23:17 +05:30
|
|
|
.It Fl N , -nicelevel Ar level
|
2007-12-17 15:44:54 +05:30
|
|
|
Modifies the scheduling priority of the daemon.
|
2021-08-01 03:11:57 +05:30
|
|
|
.It Fl -oom-score-adj Ar adj
|
|
|
|
Modifies the OOM score adjustment of the daemon.
|
2022-03-06 02:18:17 +05:30
|
|
|
.It Fl -scheduler Ar policy
|
|
|
|
Sets the scheduling policy of the daemon. Possible values are other, fifo and rr
|
|
|
|
on POSIX systems and, additionally, batch and idle on Linux. If
|
|
|
|
.Ar policy
|
|
|
|
is an integer, it is passed directly to sched_setscheduler(2).
|
|
|
|
.It Fl -scheduler-priority Ar priority
|
|
|
|
Sets the priority parameter of the scheduling policy of the daemon. See sched(7) for details.
|
2007-12-17 15:44:54 +05:30
|
|
|
.It Fl 1 , -stdout Ar logfile
|
|
|
|
Redirect the standard output of the process to logfile when started with
|
|
|
|
.Fl background .
|
2018-06-15 22:53:50 +05:30
|
|
|
The logfile Must be an absolute pathname, but relative to the path
|
|
|
|
optionally given with
|
2007-12-17 15:44:54 +05:30
|
|
|
.Fl r , -chroot .
|
|
|
|
The logfile can also be a named pipe.
|
2018-06-15 22:53:50 +05:30
|
|
|
.It Fl 2 , -stderr Ar logfile
|
|
|
|
Redirect the standard error of the process to logfile when started with
|
|
|
|
.Fl background .
|
|
|
|
The logfile must be an absolute pathname, but relative to the path
|
|
|
|
optionally given with
|
|
|
|
.Fl r , -chroot .
|
|
|
|
The logfile can also be a named pipe.
|
|
|
|
.It Fl 3 , -stdout-logger Ar cmd
|
|
|
|
Run cmd as a child process redirecting the standard output to the
|
|
|
|
standard input of cmd when started with
|
|
|
|
.Fl background .
|
|
|
|
Cmd must be an absolute pathname, but relative to the path optionally given with
|
|
|
|
.Fl r , -chroot .
|
|
|
|
This process must be prepared to accept input on stdin and be able to
|
|
|
|
log it or send it to another location.
|
|
|
|
.It Fl 4 , -stderr-logger Ar cmd
|
|
|
|
Run cmd as a child process and
|
|
|
|
Redirect the standard error of the process to the standard input of cmd
|
|
|
|
when started with
|
|
|
|
.Fl background .
|
|
|
|
Cmd must be an absolute pathname, but relative to the path optionally given with
|
|
|
|
.Fl r , -chroot .
|
|
|
|
This process must be prepared to accept input on stdin and be able to
|
|
|
|
log it or send it to another location.
|
2021-06-13 22:56:24 +05:30
|
|
|
.It Fl -capabilities Ar cap-list
|
|
|
|
Start the daemon with the listed inheritable, ambient and bounding capabilities.
|
|
|
|
The format is the same as in cap_iab(3).
|
2022-01-03 21:11:57 +05:30
|
|
|
.It Fl -secbits Ar sec-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).
|
2022-01-04 00:00:46 +05:30
|
|
|
.It Fl -no-new-privs
|
|
|
|
Set the No New Privs flag for the program. See PR_SET_NO_NEW_PRIVS prctl(2).
|
2009-10-11 23:52:46 +05:30
|
|
|
.It Fl w , -wait Ar milliseconds
|
2009-04-19 23:50:49 +05:30
|
|
|
Wait
|
2009-10-11 23:52:46 +05:30
|
|
|
.Ar milliseconds
|
2009-04-19 23:50:49 +05:30
|
|
|
after starting and check that daemon is still running.
|
|
|
|
Useful for daemons that check configuration after forking or stopping race
|
|
|
|
conditions where the pidfile is written out after forking.
|
2007-12-17 15:44:54 +05:30
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
These options are only used for stopping daemons:
|
|
|
|
.Bl -tag -width indent
|
|
|
|
.It Fl R , -retry Ar timeout | Ar signal Ns / Ns Ar timeout
|
2011-12-31 09:50:03 +05:30
|
|
|
The retry specification can be either a timeout in seconds or multiple
|
|
|
|
signal/timeout pairs (like SIGTERM/5).
|
2018-03-13 04:45:06 +05:30
|
|
|
If this option is not given, the default is SIGTERM/5.
|
2007-12-17 15:44:54 +05:30
|
|
|
.El
|
2008-03-29 15:07:59 +05:30
|
|
|
.Sh ENVIRONMENT
|
2015-11-03 17:03:06 +05:30
|
|
|
.Va SSD_IONICELEVEL
|
|
|
|
can also set the IO scheduling priority of the daemon, but the command line
|
|
|
|
option takes precedence.
|
|
|
|
.Pp
|
2008-03-29 15:07:59 +05:30
|
|
|
.Va SSD_NICELEVEL
|
|
|
|
can also set the scheduling priority of the daemon, but the command line
|
|
|
|
option takes precedence.
|
2008-09-27 05:28:57 +05:30
|
|
|
.Pp
|
2021-08-01 03:11:57 +05:30
|
|
|
.Va SSD_OOM_SCORE_ADJ
|
|
|
|
can also set the OOM score adjustment of the daemon, but the command line
|
|
|
|
option takes precedence.
|
|
|
|
.Pp
|
2008-09-27 05:28:57 +05:30
|
|
|
.Va SSD_STARTWAIT
|
2009-04-19 23:50:49 +05:30
|
|
|
As the
|
|
|
|
.Fl w , -wait option above.
|
2008-09-27 05:28:57 +05:30
|
|
|
.Pa /etc/rc.conf
|
|
|
|
.Nm
|
|
|
|
waits for to check the daemon is still running.
|
2008-02-25 04:39:15 +05:30
|
|
|
.Sh NOTE
|
|
|
|
.Nm
|
|
|
|
uses
|
|
|
|
.Xr 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.
|
2007-12-17 15:44:54 +05:30
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr chdir 2 ,
|
|
|
|
.Xr chroot 2 ,
|
2008-02-25 04:39:15 +05:30
|
|
|
.Xr getopt 3 ,
|
|
|
|
.Xr nice 2 ,
|
|
|
|
.Xr rc_find_pids 3
|
2008-09-22 15:04:51 +05:30
|
|
|
.Sh BUGS
|
|
|
|
.Nm
|
2008-11-04 16:35:30 +05:30
|
|
|
cannot stop an interpreted daemon that no longer exists without a pidfile.
|
2008-02-25 04:39:15 +05:30
|
|
|
.Sh HISTORY
|
|
|
|
.Nm
|
|
|
|
first appeared in Debian.
|
|
|
|
.Pp
|
|
|
|
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.
|
2007-12-17 15:44:54 +05:30
|
|
|
.Sh AUTHORS
|
2008-12-31 00:38:51 +05:30
|
|
|
.An Roy Marples <roy@marples.name>
|