My problem is this command produces an error when I tried to connect from our server to another external server :

mysql -h db.hostname.com -u username -pP@ssword database_name

And this is the error :

ERROR 1044 (42000): Access denied for user 'username'@'%' to database 'database_name'

I already asked the external server admin to add our IP in their firewall but to no avail..

Has this something to do with GRANTing privileges to the 'username'

link|improve this question

77% accept rate
Is the quoted command text verbatim? Because you've no space between the -p switch and the password... – Dan J Oct 6 '10 at 23:12
There's not supposed to be a space after -p. The reason is because if you omit the password, it'll prompt it, hence doing eg. mysql -u username -p db will not interpret "db" as a password, but rather as the database to use, and it'll prompt the password. – reko_t Oct 6 '10 at 23:14
i think there shouldn't be a space between the -p option and the password. and yes that's how i typed the command . i just replaced the actual values. – r2b2 Oct 6 '10 at 23:16
feedback

2 Answers

up vote 1 down vote accepted

It's not a problem with firewall, since MySQL is denying the connection. As you suspect, it is a problem with the privileges granted for the user. You need to execute this on the mysql server (you might need to tweak this a bit if you don't want to grant all privileges to the db):

GRANT ALL ON database_name.* TO 'username'@'%' IDENTIFIED BY 'P@ssword';

Also note that if you always connect from a specific host/ip, it's a better idea to specify that host/ip, instead of using a wildcard %, which would allow connections from anywhere.

link|improve this answer
i have no control on the external server we are trying to connect to because it's hosted by another web development company our office hired to build our websites. having said that, i can only suggest things to them. How must one do it if only I need read (SELECT) privilege? I assume the SELECT privilege is enough to be allowed by mysql? And I am just reading the data from their database anyway. – r2b2 Oct 6 '10 at 23:36
For that you'd do GRANT SELECT ON ... – reko_t Oct 7 '10 at 0:43
feedback

It sounds like the password is wrong, or that the username you are trying to use is not allowed to connect from your computer's IP address.

as you know, the mysql administrator at the remote site can specify which IP's are allowed to connect using any given user account. Bear in mind that your computer's IP address may be routed through all kinds of routers and firewalls on your company's end before you reach the external database. As a result, your IP may appear different to you than to the external database. In that case, it doesn't help if the external database admin adds YOUR IP to the 'allowed' list, they should add the 'outside world' IP address instead.

The easiest way to find out if this applies to you, is as follows: visit www.whatismyip.com and write down the IP address on screen. This is your IP as seen from the 'outside world'. It is very likely that this IP is actually the outside IP of a firewall or router within your company's network, and not your computer's IP at all.

Next, (assuming you're on Windows) go to Start > run. Type cmd and hit enter. Type ipconfig and hit enter. You can now see your local IP address.

If these two IP's don't match, tell the remote admin to add your outside world IP to the 'allowed' list as well.

also - once you go to production, and move your code to another server, the IP fun starts again. You might as well fix this right away

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.