I'm getting a very strange error, I've created a user 'testuser' with the following credentials:

CREATE USER 'testuser'@'%' IDENTIFIED BY '123456';
GRANT ALL PRIVILEGES ON *.* TO 'testuser'@'%';
FLUSH PRIVILEGES;

I have also modified my /etc/mysql/my.cnf not to bind to any single address. (Which afaik should accept connections from anywhere?) And restarted mysql.

And I can connect locally no problem.

I am running inside a virtual box on ubunutu.

Trying to connect from my windows machine, gives me MySQL error number 1045 Access denied for user 'testuser'@'192.168.0.22'.

I'm confident that it's not a networking problem as changing the host or port gives a different error "Cannot connect to the specified instance"

Logging in as root and looking at the users table - all looks as expected. (Single row, '%' for host and all permissions set.)

I've been banging my head against the wall all afternoon... can anyone suggest any other possible causes for this error?

Thanks for any help.

link|improve this question

What is full error message? – Devart Oct 31 '11 at 15:52
"Could not connect to the specified instance. MySQL Error Number 1045 Access denied for user 'testuser'@'192.168.0.22' (using password: YES) If you want to check the network connection, please click the Ping button." (Clicking the ping button gives: "Pinging vbox Reply from 192.168.0.11: Time = 1ms TTL = 64 Reply from 192.168.0.11: Time = 0ms TTL = 64 ...") – Chris Oct 31 '11 at 16:00
Check the password. Is it correct? – Devart Oct 31 '11 at 16:09
feedback

1 Answer

up vote 1 down vote accepted

Run the GRANT statement with the IDENTIFIED BY:

GRANT ALL PRIVILEGES ON *.* TO 'testuser'@'%' IDENTIFIED BY '123456';
link|improve this answer
That was it, solved! Thank you! – Chris Oct 31 '11 at 16:19
@Chris I'm not sure why this is necessary, as the documentation implies that setting the pw in CREATE USER applies globally, but in my experience it is necessary to specify it in the GRANT dev.mysql.com/doc/refman/5.0/en/grant.html – Michael Oct 31 '11 at 16:20
1  
@Chris Welcome to Stack Overflow, by the way. If you are satisfied with the answer, you can mark it as "accepted" by clicking on the checkmark to the left. – Michael Oct 31 '11 at 16:24
feedback

Your Answer

 
or
required, but never shown

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