• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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