Iniciar servicio
sudo systemctl start servicename.service
Detener servicio
sudo systemctl stop servicename.service
Reiniciar servicio
sudo systemctl restart servicename.service
Recargar servicio
sudo systemctl reload servicename.service
Comprobar estado del servicio
sudo systemctl status servicename.service
Habilitar servicio
sudo systemctl enable servicename.service
Deshabilitar servicio
sudo systemctl disable servicename.service
* Reemplazar servicename.service con el nombre del servicio.