ERROR2002(HY000):CantconnecttolocalMySQLserverthroughsocket/tmp/mys

在使用brew安装mysql:

 brew install mysql

在输入

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

会出现这个问题
解决方法:

> mysql.server start
Starting MySQL
 SUCCESS! 

再输入:mysql -uroot -p 即可进入mysql

猜你喜欢

转载自blog.csdn.net/m0_47202787/article/details/106879493