☰ Categories

Linux: The different ways to manage services

Depending on which OS and installation option you chose there are multiple ways to manage linux services:

Example of restarting ssh:

init.d
/etc/init.d/ssh restart

SysVInit
service ssh restart

systemd
sudo service ssh restart