Services

Managing services with systemctl

Start

sudo systemctl start application.service

Stop

sudo systemctl stop application.service

Status

sudo systemctl status application.service

Enabling service autostart on system boot

sudo systemctl enable application.service

Disabling service autostart on system boot

sudo systemctl disable application.service

  

https://www.digitalocean.com/community/tutorials/how-to-use-systemctl-to-manage-systemd-services-and-units

 

Back to top