La publicación enumera el nuevo comando systemctl en RHEL 7 con el comando heredado service/chkconfig. El servicio de comandos heredados y chkconfig siguen siendo compatibles en RHEL 7 con la salida de información de reenvío/redireccionamiento del sistema de comandos predominante.
Iniciar, detener y verificar el estado de un servicio
Iniciar un servicio:
# systemctl start [service_name]
por ejemplo:
# systemctl start multipathd
Detener un servicio:
# systemctl stop [service_name]
por ejemplo:
# systemctl stop multipathd
Consultar el estado de un servicio:
# systemctl status [service_name]
por ejemplo:
# systemctl status multipathd
Habilitar o deshabilitar el inicio automático de un servicio
Habilitar el inicio automático de un servicio al arrancar (equivalente a chkconfig):
# systemctl enable [service_name]
por ejemplo:
# systemctl enable multipathd
Deshabilitar el inicio automático de un servicio al arrancar:
# systemctl disable [service_name]
por ejemplo:
# systemctl disable multipathd
Listado de servicios
Lista de unidades de servicio activas:
# systemctl list-units --type service
Enumerar el estado habilitado/deshabilitado de todas las unidades de servicio instaladas:
# systemctl list-unit-files --type service