2025-03-14 21:59:59 -06:00
|
|
|
# svcs
|
|
|
|
|
|
|
|
|
|
> List information about running services.
|
2026-07-08 16:22:34 -06:00
|
|
|
> More information: <https://www.unix.com/man-page/sunos/1/svcs>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- List all running services:
|
|
|
|
|
|
|
|
|
|
`svcs`
|
|
|
|
|
|
|
|
|
|
- List services that are not running:
|
|
|
|
|
|
|
|
|
|
`svcs -vx`
|
|
|
|
|
|
|
|
|
|
- List information about a service:
|
|
|
|
|
|
|
|
|
|
`svcs apache`
|
|
|
|
|
|
|
|
|
|
- Show location of service log file:
|
|
|
|
|
|
|
|
|
|
`svcs -L apache`
|
|
|
|
|
|
|
|
|
|
- Display end of a service log file:
|
|
|
|
|
|
|
|
|
|
`tail $(svcs -L apache)`
|