Error ERROR [HY000] [MySQL][ODBC 5.1 Driver]Access denied for user (using password: YES) ERROR [HY000] [MySQL][ODBC 5.1 Driver]Access denied for user (using password: YES)
4 Answers
If nothing else works, it might be something you mistyped in the password etc. To fix, connect as root, and reset the database permissions, password and flush the privileges:
GRANT ALL PRIVILEGES ON <database>.* TO <user>@localhost IDENTIFIED BY '<password>'; SET PASSWORD FOR <user>@localhost = PASSWORD('<password>'); Flush Priviliges;