Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

[Solved] viewing log in real time

If none of the specific sub-forums seem right for your thread, ask here.
Post Reply
Message
Author
admiincomp
Posts: 38
Joined: 2023-12-19 09:25
Been thanked: 1 time

[Solved] viewing log in real time

#1 Post by admiincomp »

How can I monitor everything that occurs in real time. I used to be able to use tail -f on syslog but there is no syslog any more.
Last edited by admiincomp on 2024-04-16 18:36, edited 1 time in total.

CwF
Global Moderator
Global Moderator
Posts: 2741
Joined: 2018-06-20 15:16
Location: Colorado
Has thanked: 45 times
Been thanked: 206 times

Re: [Software] viewing log in real time

#2 Post by CwF »

Code: Select all

$ journalctl -f
or root # if user not allowed.

reinob
Posts: 1198
Joined: 2014-06-30 11:42
Has thanked: 99 times
Been thanked: 47 times

Re: [Software] viewing log in real time

#3 Post by reinob »

Note that you can also have the systemd journal forward all[*] messages to syslog (e.g. rsyslogd).

[*] the systemd journal can miss events, due to various rate limiting options.

You can also disable the systemd journal completely and use exclusively rsyslogd, but it's quite messy.

Post Reply