I'm running Ubuntu 10.10 inside VMware fusion on Mac OSX Snow Leopard. Inside ubuntu, I'm attempting to use command-line mysql to connect to a database hosted on a separate web server. For some reason, mysql misinterprets the remote hostname as a local address, and is not able to connect to the database.

Steps: (from ubuntu inside VMware)

mysql -u <my-username> -h mysql-2.sandbox.wrkng.net -p

Enter Password: <my password>

expected: to log into mysql

got:

ERROR 1045 (28000): Access denied for user '<my-username>'@'c-71-233-98-90.hds1.ma.comcast.net' (using password: YES)

Note that the hostname referenced in the error message is different than the one I inputted to the mysql command.

Also, performing the same command from the Mac (host of the VM) terminal successfully connects to the database.

I am not seasoned with VMware or linux, so I may be missing something obvious here -- it seems like somewhere along the way either ubuntu or the VM has a networking issue. Note also that accessing the internet via ubuntu inside the VM works fine.

Any help is greatly appreciated. Thanks!

link|improve this question
The host name in the error message is not the same as the host given to the mysql command, because the error message is telling you that "some user, at this location, doesn't have a sufficient grant in place to do this, so I'm kicking them off". – Rob Jan 1 '11 at 20:51
When you're logged in successfully via the Mac terminal, what is the output of "SELECT CURRENT_USER()" ? – Rob Jan 1 '11 at 20:52
1  
You need some form of name to IP translation -- HOSTS file, DNS, etc -- to be able to connect to a remote host. Make sure you can ping the host first... – OMG Ponies Jan 1 '11 at 20:56
This is better suited on serverfault.com – marcog Jan 1 '11 at 21:20
1  
Have you explicitly granted access to the user(and host) you're connecting from ? Note that the host you're connecting TO is the one you give on the command line, the error message states the host you're connecting FROM. – nos Jan 1 '11 at 21:31
show 4 more comments
feedback

1 Answer

Error 1045 has already been answered by the following post MySQL - ERROR 1045 - Access denied

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.