User permissions in syslog files are 640 but for LogAnalyzer to work syslog files must be readable by www-data. Below are the steps to make syslog readable
1. First add a new group by using this command, we call the group logadmin in this sample.
groupadd logadmin
2. Now we add the www-data user to the new created logadmin group!
usermod -a -G logadmin www-data
3. Verify
Syslog file is not readable, read access may be denied
4/
5
Oleh
Admin