Cmd Generator

systemctl

Control the systemd system and service manager.

systemctl start

Examples

# Start a service
systemctl start nginx

# Stop a service
systemctl stop nginx

# Restart a service
systemctl restart nginx

# Reload config without restart
systemctl reload nginx

# Start and enable at boot
systemctl enable --now nginx