Differences between revisions 2 and 3
Revision 2 as of 2018-09-05 22:20:43
Size: 798
Editor: PieterSmit
Comment:
Revision 3 as of 2021-11-30 09:48:44
Size: 929
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 25: Line 25:
== Restart system ==
 * # systemctl daemon-reload
 * # systemctl restart remote-fs.target
 * # systemctl restart local-fs.target

Linux systemd startup and process monitoring

  • User startup scripts in
    1. $ ls /etc/systemd/system/
    2. $

View process logs with jounalctl

  • Links digitalocean

  • Set timezone for log display using
    • $ timedatectl list-timezones
    • $ sudo timedatectl set-timezone zone
    • $ timedatectl status
    • only logs for current boot / since last reboot
      • $ journalctl -b
      • $ journalctl --list-boots
      • $ journalctl --since "2015-01-10" --until "2015-01-11 03:00"
      • $ journalctl --since 09:00 --until "1 hour ago"
    • journalctl -u nginx.service -u php-fpm.service --since today

Restart system

  • # systemctl daemon-reload
  • # systemctl restart remote-fs.target
  • # systemctl restart local-fs.target

...

Linux/Systemd (last edited 2022-03-01 19:21:19 by PieterSmit)