• Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is 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.

Chown Fail

smithygotlost

New Pleskian
So after sorting one of my clients websites out the other day i did the worst possible thing.. In a momentery lapse of concentration i did

chown yellow:psaserv /


After a few seconds it clicked what i had done. In a panic i stopped it.

Now ive repaired all the Owners : Group using

for p in $(rpm -qa | grep plesk); do rpm --setugids $p; done
for p in $(rpm -qa | grep psa); do rpm --setugids $p; done
for p in $(rpm -qa | grep plesk); do rpm --setperms $p; done
for p in $(rpm -qa | grep psa); do rpm --setperms $p; done


This worked everything works.. However the Chmod of most of the folders has reverted to 744 meaning back ups wont run, Crons cant use the Tmp files ect.

Does anyone know of anyway or anything that can correct all the CHMOD's or atleast have a list so i can manually do them ??

Thanks
Mike
 
Back
Top