Strange things in log files

H.W.B

Regular Pleskian
Hello,

I have some strange lines in my message log

Apr 30 09:36:27 plesk systemd: Configuration file /usr/lib/systemd/system/auditd.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
Apr 30 09:36:27 plesk systemd: Configuration file /usr/lib/systemd/system/psa.service is marked executable. Please remove executable permission bits. Proceeding anyway.
Apr 30 09:36:27 plesk systemd: Configuration file /usr/lib/systemd/system/psa.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
Apr 30 09:36:27 plesk systemd: Configuration file /usr/lib/systemd/system/ebtables.service is marked executable. Please remove executable permission bits. Proceeding anyway.

Is this something to worry about??

Thank you

Henk
 
Hello,

Is this something to worry about??
Henk

Hi

I assume you're running a server with CentOS 7. Those messages originate from systemd that complains about bad file permissions of some systemd service configuration files. Those are only warnings and nothing to worry about, your system will work without problems.

If you want to get rid of those messages then please do:
chmod 0644 /usr/lib/systemd/system/psa.service
chmod 0644 /usr/lib/systemd/system/auditd.service
chmod 0644 /usr/lib/systemd/system/ebtables.service

cheers
 
@Monty thanks. This also worked for me!

Error:
Bash:
systemd[1]: Configuration file /etc/systemd/system/agent360.service is marked world-inaccessible.
This has no effect as configuration data is accessible via APIs without restrictions.
Proceeding anyway.

Solution:
Bash:
chmod 0644 /etc/systemd/system/agent360.service
systemctl restart agent360.service
 
Back
Top