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

前端 未结 30 1315
南旧
南旧 2020-12-04 05:14

I installed MySQL on Mac OS X Mountain Lion with homebrew install mysql, but when I tried mysql -u root I got the following error:

30条回答
  •  旧巷少年郎
    2020-12-04 05:46

    After working on this for several hours what worked for me was go to /etc/mysql/ and edit the my.cnf file. Add the following

    [client]
    port = 3306
    socket = /var/run/mysqld/mysqld.sock
    

提交回复
热议问题