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

前端 未结 30 1299
南方客
南方客 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:43

    It worked for me with the following changes

    Whatever path for socket is mentioned in [mysqld] and same in [client] in my.cnf and restart mysql

    [mysqld] socket=/var/lib/mysql/mysql.sock

    [client] socket=/var/lib/mysql/mysql.sock

提交回复
热议问题