Linux-Noob Forums
Issue connecting to mysql port 3306 - Printable Version

+- Linux-Noob Forums (https://www.linux-noob.com/forums)
+-- Forum: Linux Server Administration (https://www.linux-noob.com/forums/forum-8.html)
+--- Forum: Security and Firewalls (https://www.linux-noob.com/forums/forum-87.html)
+--- Thread: Issue connecting to mysql port 3306 (/thread-536.html)



Issue connecting to mysql port 3306 - JeffJustCollect - 2009-12-11


I've been trying to create a connection to mysql on a Linux server from Windows XP with MySQL ODBC 3.51 Driver. After setting all of my credentials to test the connection I get the following error. "[MySQL][ODBC 3.51 Driver]Host is not allowed to connect to this MySQL server". After looking up the error most references I found were to firewalls so for testing I disabled my local firewall and retried but got the same error message. I wanted to make sure that the port was open on Linux so I ran netstat -nap on the server and it showed mysql was running on the expected port and listening. I also went to this site to check my port. http://www.yougetsignal.com/tools/open-ports/ and it stated that the port was open.

 

The mysql database is working fine when you are running queries locally but trying to connect from outside of the server is when you run into issues. I don't really know what other steps to take in debugging the problem; any ideas or suggestions would be appreciated. Thanks and let me know if you need any more details about the problem.

 

-Jeff




Issue connecting to mysql port 3306 - anyweb - 2009-12-12

is the firewall on the xp box open both ways ?



Issue connecting to mysql port 3306 - Dungeon-Dave - 2009-12-12


You will also need to tell mysql to allow remote connections for that account too. Many MySQL accounts are set up to allow connections from localhost, but not other IP addresses, for security reasons (check the "users" table).

 

Note that if you DO want to allow remote connections, then I recommend moving MySQL off the default port or at least securing that port down to a small whitelisted range.