Have a question that I can't seem to find an answer for. I am trying to connect to a remote database. I type in the following to my shell:

mysql -u test -h host.name.com -p

mysql asks for my password and then outputs the following:

ERROR 2005 (HY000): Unknown MySQL server host 'host.name.com' (1)

but when I try with the ip address for that hostname

mysql -u test -h xxx.xxx.xxx.xx -p 

it works fine

link|improve this question

23% accept rate
I have also tried telnet host.name.com 3306 dosnt work. I get a name or service not known error . But telnet XXX.XXX.xxx.XX 3306 works fine – kc3 May 3 '11 at 15:09
feedback

1 Answer

up vote 1 down vote accepted

Workaround
Your DNS-settings for host.name.com do not resolve to the correct ip address on the server that runs MySQL and/or the server that you're calling from.

You can add the ip-address to /etc/hosts (for linux)
or c:\windows\system32\drivers\etc\hosts (for windows)

Permanent solution
If that works, see if you can get your DNS-server to resolve correctly, but that's more of a question for Serverfault.

link|improve this answer
this works! thank q – kc3 May 3 '11 at 15:34
@kc3: Note that it's a workaround. No-one else can access that machine through the hostname, either (unless it's a highly localised DNS issue, that is). You should fix the root cause. – Lightness Races in Orbit May 3 '11 at 16:15
feedback

Your Answer

 
or
required, but never shown

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