Systemd manages services on modern Linux systems. To check status of a service: systemctl status nginx To start a service: systemctl start nginx To stop: systemctl stop nginx To restart: systemctl restart nginx To enable a service at boot: systemctl enable nginx To disable: systemctl disable nginx To view all services: systemctl list-units --type=service Systemd also handles logs through journalctl. To view logs for a service: journalctl -u nginx Understanding systemd gives you control over how services behave on your system. Disclaimer: If you follow the information here, there is no warranty , I am not liable if it deletes your data, gets you hacked, burns your house down or anything else. If you follow the information contained here you do so entirely at your own risk . My views and opinions are my own and not necessarily represent the views of my employer. © Raheel Hameed and www.raheelhameed.com, 2017. Unauthorized use and/or duplication of this...
A personal blog about my interests and ideas