journalctl

Query the systemd journal

https://www.freedesktop.org/software/systemd/man/journalctl.html

systemdのログをクエリするためのCLI.

Examples:

# tail -f する
journalctl -f
# 最新のログを表示
journalctl -e
# ユニット(sshd, httpd, etc.)を指定
journalctl -u ユニット名

参考: