mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-05 12:00:16 +00:00
18 lines
400 B
Plaintext
18 lines
400 B
Plaintext
# svcadm
|
|
# Manipulate service instances (Solaris)
|
|
|
|
# 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
|