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

后端 未结 30 2716
再見小時候
再見小時候 2020-11-22 04:23

I am having a big problem trying to connect to mysql. When I run:

/usr/local/mysql/bin/mysql start

I have the following error :

<         


        
30条回答
  •  不知归路
    2020-11-22 04:51

    I had the same problem and it has been caused by an update of mysql drivers when mysql server was running. I fixed it just restarting both mysql and apache2:

    sudo service mysql stop

    sudo service mysql start

    sudo service apache2 stop

    sudo service apache2 start

提交回复
热议问题