HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

svcadm — Manipulate service instances. More information: <https://www.unix.com/man-page/linux/1m/svcadm>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandinstancessvcadmmanipulatecliinformationservicemore
linux

Problem

How to use the svcadm command: Manipulate service instances. More information: <https://www.unix.com/man-page/linux/1m/svcadm>.

Solution

svcadm — Manipulate service instances. More information: <https://www.unix.com/man-page/linux/1m/svcadm>.

Enable a service in the service database:
svcadm enable {{service_name}}


Disable service:
svcadm disable {{service_name}}


Restart a running service:
svcadm restart {{service_name}}


Command service to re-read configuration files:
svcadm refresh {{service_name}}


Clear a service from maintenance state and command it to start:
svcadm clear {{service_name}}

Code Snippets

Enable a service in the service database

svcadm enable {{service_name}}

Disable service

svcadm disable {{service_name}}

Restart a running service

svcadm restart {{service_name}}

Command service to re-read configuration files

svcadm refresh {{service_name}}

Clear a service from maintenance state and command it to start

svcadm clear {{service_name}}

Context

tldr-pages: sunos/svcadm

Revisions (0)

No revisions yet.