• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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