Systemd logs I check first
7/6/26Less than 1 minute
journalctl is one of the fastest ways to understand what a small server is doing.
Recent service logs
journalctl -u my-service --since "30 minutes ago" --no-pagerThat usually answers whether the service failed once, failed repeatedly, or never started at all.
Boot-specific logs
journalctl -b -u my-service --no-pagerBoot logs are useful after a reboot because they remove old noise from previous runs.
Follow mode
journalctl -fu my-serviceI use follow mode while restarting or testing a service, then stop it once the behavior is clear.