How do I enable external access to MySQL Server? I can connect locally but I cannot connect from another box on the network.
I just tried
grant all privileges on *.* to root@'%' identified by '*****' with grant option;
And restarted MySQL Server with no success.
You probably have to edit the configuration file (usually my.cnf) to listen in the external interface instead of on localhost only.
Change the
bind-addressparameter to your machine’s IP address.If this is an old MySQL installation, you should comment out the skip-networking parameter.
Afterwards, restart MySQL and you’ll be set