I have a server attempting to connect to a MySQL database hosted outside of the local network. I am attempting to use a public IP address to connect to it.
Testing the connection in the command line gives me this error:
ERROR 2003 (HY000): Can't connect to MySQL server on '[ip_address]' (146)
PDO gives me the same error. In any case, the connection works fine locally and within the same network, which is what boggles my mind.
The MySQL server has had its bind-address modified so it accepts remote connections. The MySQL server also has a user with the proper privileges set. But in any case, it looks as though I can't even start the connection in the first place.
Is there a my.cnf value I need to add to let MySQL accept requests from outside the local network?
Thanks.