Sunday, May 5, 2024
12
rated 0 times [  12] [ 0]  / answers: 1 / hits: 9040  / 2 Years ago, thu, january 13, 2022, 2:48:59

Running latest Ubuntu ver. 11.04. Using Firestarter firewall configuration (ver.1.0.3). When Firestarter is run, an error message is returned, "Failed to open the system log. No event information will be available". Also same error msg. is returned in the "Events" tab within Firestater, "Error reading system log (null), file does not exist."



How is the system log opened/created/started to prevent this error msg??


More From » configuration

 Answers
7

Ubuntu 11.04 installs rsylogd rather than syslogd which Firestarter was expecting.



rsyslogd is configured using the file /etc/rsyslog.d/50-default.conf.



You can edit this file



gksu gedit /etc/rsyslog.d/50-default.conf


and change the lines commented out that create the relevant logfile



#*.=info;*.=notice;*.=warn;
# auth,authpriv.none;
# cron,daemon.none;
# mail,news.none -/var/log/messages


to



*.=info;*.=notice;*.=warn;
auth,authpriv.none;
cron,daemon.none;
mail,news.none -/var/log/messages


and then restart rsyslog:



sudo service rsyslog restart


source


[#44252] Friday, January 14, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
pilun

Total Points: 270
Total Questions: 100
Total Answers: 94

Location: England
Member since Sat, Feb 13, 2021
3 Years ago
;