I spent two days trying to figure this one out. Basically I couldn't connect to the localhost MySQL database installed by XAMPP 1.7.4 using MySQL Workbench. I got a socket connection error (1061) or something like that.
2 Answers
The very simple workaround for this is simply to add the following line to your my.cnf :
bind-address=0.0.0.0This way you can connect from any server or interface.
Is this error 10061? Please give a full trace of the error.
Just checking a few things:
Are you sure you are connecting to localhost on port 3306?
Is MySQL started?
Do you have the following line in your
my.inifile?bind-address=127.0.0.1