• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Trying to login to mysql with MySql Administrator.

M

MarcusInMd

Guest
Keep getting an error Access denied for user such and such using passowrd YES.

I am using the username and password that I use to login to plesk control panel on our server. I have also tried various DB usernames and passwords.

Anyone have an idea of why this is not working?

Using the lastest windows version of mysql Adminsitrator on a remote computer.

Mysql version 4.0.24
 
Did you run mysql_fix_privilege_tables after the MySQL upgrade?
 
Hi

Im not a Plesk Guru but have some Mysql experience.

My guess would be that as you are trying to access mysql from a remote computer that computer does not have permission to access it.

If you have ssh access type

mysql -u admin -p
Type your admin password

You get to a mysql> prompt

type

mysql> use mysql
mysql> select * from user;

This will show the user privilage table - take a look at the host column, I would guess yours will say localhost which means that only users from the localhost can connect.

Take a look at http://dev.mysql.com/doc/refman/4.1/en/privilege-system.html for an explanation of how privlages work in mysql

Hope this helps

Paul
 
Back
Top