Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 352 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 352 Bytes

systemd cheatsheet

systemctl

To view a status of the service:

sudo systemctl status nginx

To restart a service:

sudo systemctl restart nginx

journalctl

To tail the logs of a unit:

sudo journalctl -fu nginx

To tail and view the last 100 logs:

sudo journalctl -fu nginx -n 100 --no-pager