• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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