• 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.

Question Plesk 17.8 - Deny DB Plesk Access

Frank.P

Regular Pleskian
In Plesk 17.5 I can access to plesk db like admin user, but now I upgrade to 17.8 and mysql said Acess Denied

How can I get the new password for user admin?
 
Can you provide more information as far as what your actual use purpose is? Typically, using the admin user to access the PSA database isn't a smart idea... especially if you are storing these credentials in a script. It is a much safer option to add a new user to the PSA database and provide it the minimum permissions necessary.
 
No script. I acces using MySql Cliente.

I need to check certificate table because, one subdomain not show the certificate of main domain and I want to check If references are OK.
 
I go to plesk/bin and run command :
mysql db
use psa
CREATE USER 'myuser'@'localhost' IDENTIFIED BY 'mypass.';
GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'localhost' WITH GRANT OPTION;
FLUSH PRIVILEGES;
 
Back
Top