2014-02-25 02:13:55 +00:00
|
|
|
# journalctl
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
> Query the systemd journal.
|
2014-02-25 02:13:55 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Show all messages from this boot:
|
2014-02-25 02:13:55 +00:00
|
|
|
|
|
|
|
`journalctl -b`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Show all messages from last boot:
|
2014-02-25 02:13:55 +00:00
|
|
|
|
|
|
|
`journalctl -b -1`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Follow new messages (like `tail -f` for traditional syslog):
|
2014-02-25 02:13:55 +00:00
|
|
|
|
|
|
|
`journalctl -f`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Show all messages by a specific unit:
|
2014-02-25 02:13:55 +00:00
|
|
|
|
|
|
|
`journalctl -u {{unit}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Show all messages by a specific process:
|
2014-02-25 02:13:55 +00:00
|
|
|
|
|
|
|
`journalctl _PID={{pid}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Show all messages by a specific executable:
|
2014-02-25 02:13:55 +00:00
|
|
|
|
2018-02-10 14:42:11 +00:00
|
|
|
`journalctl {{path/to/executable}}`
|