Managing Linux Services with systemctl
Managing Linux Services with systemctl Systemd is the default init system on most modern Linux distributions. The systemctl command is the primary tool for managing services. This article covers the most common operations. 1. Checking Service Status To see whether a service is running: systemctl status nginx The output shows the active state, main PID, memory usage, and recent log entries. A green active running line means the service is healthy. ...