Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)

前端 未结 30 1740
南方客
南方客 2020-11-22 11:30

I am getting the following error when I try to connect to mysql:

Can\'t connect to local MySQL server through socket \'/var/lib/mysql/mysql.sock\' (2)<

30条回答
  •  忘掉有多难
    2020-11-22 11:53

    Make sure you started the server:

    mysql.server start
    

    Then connect with root user:

    mysql -uroot
    

提交回复
热议问题