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.
using password: YESjust means you're authenticating using a password, not that the password is actuallyYES. It means you are supplying the wrong password. – Brian Roach Sep 4 '11 at 14:27