A few months ago I developed a program in C which interacts with a MySQL database and is running on Ubuntu.

Unfortunately I forgot the user's password and now whenever I run the program I get:

Access denied for user 'user1'@'localhost' (using password: YES)

That's quite strange since the password is correct and it's the root password which obviously doesn't match the word 'yes'..

How can I solve the problem? Thanks.

link|improve this question

0% accept rate
Can you login to mysql with the 'root' account? If so you can reset the password for user1. – Jim Garrison Sep 4 '11 at 14:25
'YES' indicates that a password was used, not the actual password used. Have a look here to reset your root password - dev.mysql.com/doc/refman/5.0/en/resetting-permissions.html – arunkumar Sep 4 '11 at 14:26
using password: YES just means you're authenticating using a password, not that the password is actually YES. It means you are supplying the wrong password. – Brian Roach Sep 4 '11 at 14:27
Usually posting some relevant code can also help, maybe something there is wrong.. – Shadow Wizard Sep 4 '11 at 14:30
feedback

2 Answers

using password: YES means that you tryied to login using a password (not that you used the password YES)

Try changing the user's password:

UPDATE mysql.user SET Password=PASSWORD('new password') WHERE Name = 'user1';
FLUSH PRIVILEGES;
link|improve this answer
feedback

You need to login as root (or as another user with sufficient permissions) and then change the password for user user1. You have a few options to alter password (using SET PASSWORD, using GRANT, or issuing update query against mysql.user). Check here for examples.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.