SERVICE(8) | MidnightBSD System Manager's Manual | SERVICE(8) |
service
— control
(start/stop/etc.) or list system services
service |
[-j jail]
-e |
service |
[-j jail]
-R |
service |
[-j jail]
[-v ] -l |
service |
[-j jail]
[-v ] -r |
service |
[-j jail]
[-v ] script
command |
The service
command is an easy interface
to the rc.d system. Its primary purpose is to start and stop services
provided by the rc.d scripts. When used for this purpose it will set the
same restricted environment that is in use at boot time (see
ENVIRONMENT). It can also be used to
list the scripts using various criteria.
The options are as follows:
-e
-j
jail-l
-R
-r
-e
above, but list all of the files, not just what
is enabled.-v
When used to run rc.d scripts the service
command sets HOME
to / and
PATH
to
/sbin:/bin:/usr/sbin:/usr/bin which is how they are
set in /etc/rc at boot time.
The service
utility exits 0 on
success, and >0 if an error occurs.
The following are examples of typical usage of the
service
command:
service named status service -j dns named status service -rv
The following programmable completion entry can be used in bash(1) for the names of the rc.d scripts:
_service () { local cur cur=${COMP_WORDS[COMP_CWORD]} COMPREPLY=( $( compgen -W '$( service -l )' -- $cur ) ) return 0 } complete -F _service service
bash(1) (ports/shells/bash), rc.conf(5), rc(8), rcorder(8)
The service
utility first appeared in
FreeBSD 7.3.
This manual page was written by Douglas Barton <dougb@FreeBSD.org>.
June 23, 2020 | midnightbsd-3.1 |