Sunday, 4 June 2017

FreeBSD ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)

Can not start mysql ..
ERROR 2002 (HY000): Can not connect to local MySQL server through socket '/tmp/mysql.sock (2)




I use mysql51. I've tried reinstalling but nothing works ...

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...