restart service linux code example

Example 1: command to restart linux

sudo reboot

Example 2: linux restart service

systemctl restart SERVICE_NAME

Example 3: systemd stop service and start

sudo systemctl enable minetest

Example 4: service restart command

You can use sc start [service] to start a service and sc stop [service] to stop it. With some services net start [service] is doing the same.

But if you want to use it in the same batch, be aware that sc stop won't wait for the service to be stopped. In this case you have to use net stop [service] followed by net start [service]. This will be executed synchronously.

Example 5: Debian restart service

Systemctl restart <name>

Example 6: systemd stop service and start

sudo systemctl status minetest