I have a question that I cannot find an answer to. I am trying to connect to a remote database. I introduce the following Ubuntu shell:
mysql -u test -h mysql.domain.com -p
mysql asks for my password and then displays the following:
ERROR 1045 (28000): Access denied for user 'test'@'externalit.domain.com' (using password: YES)
The problem is that I am not external. I am on a completely different host. I think the server I'm running on has been cloned from externalit, but I have not installed the server. My question is: does mysql have a conf file or other parameter that can automatically enter the wrong host name? Can i change this?
source share