I have installed MySQL Community Edition 5.5 on my local machine and I want to allow remote connections so that I can connect from external source.
How can I do that
If mysqld
has a bind address set to a loopback/local address (e.g. 127.0.0.1
), the server will not be reachable from remote hosts, because a loopback interface cannot be reached from any remote host.
Set this option to 0.0.0.0
(::
for IPv4+6) to accept connections from any host, or to another externally-reachable address if you want to only allow connections on one interface.
Source