View Journal Entries
Use the following journalctl command variations to view the entries in the systemd journal.
To view the systemd journal entries for the license server service
• | To view all entries in the journal, starting with the oldest entry, run this command: |
sudo journalctl -u flexnetls-producer_name.service
• | To filter the journal entries, use options similar to this (showing the option --since to view entries on or later than the specified time): |
sudo journalctl -u flexnetls-producer_name.service --since 14:00:00
• | To show entries at a given log level or lower, use -p and the log level (such as err): |
sudo journalctl -u flexnetls-producer_name.service - p err
For a complete list of jounrnalctl options, go to this website:
https://www.freedesktop.org/software/systemd/man/journalctl.html#