Error #2002 Can't connect to local MySQL server through socket '/Applications/MAMP/tmp/mysql/mysql.sock' (2)

前端 未结 6 1268
Happy的楠姐
Happy的楠姐 2020-12-01 16:48

I\'m running MAMP.
It has been working fine up until yesterday. I haven\'t been able to find anything that helps so far. But here is my problem:

As the title

6条回答
  •  再見小時候
    2020-12-01 17:07

    Test

    If you attempt to start MySQL using the full path it should work

    /Applications/MAMP/Library/bin/mysql -u root -p
    

    Fix

    If that works, then you can set it to work normally by running

    sudo ln -s /Applications/MAMP/tmp/mysql/mysql.sock /tmp/mysql.sock
    

    Resolution

    Now MySQL should work normally

    mysql -u root -p
    

提交回复
热议问题