mysql 異常Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock 解決辦法

Have you ever faced an error 'Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock', while trying to log in to MySQL as any user?mysql

You can login to your MySQL via the following terminal command.sql

mysql -u root -psocket

orthis

mysql -u root -pPasswordrest

Its recommended, not to use passwords in terminal command, due to privacy reasons.code

Verify that, your MySQL is running. If not, start service by typing following command in your Linux terminal.server

sudo service mysql start

orip

/etc/init.d/mysql start

This error occurs due to multiple installations of MySQL, in the operating system.terminal

To resolve the issue, run the following commands in your Linux terminal.it

ps -A|grep mysql

Kill the process by using following command:

sudo pkill mysql

and then run command:

ps -A|grep mysqld

Also Kill this process by running the following command:

sudo pkill mysqld

Now you are fully set and can restart your MySQL server by running the following commands:

sudo service mysql restart
mysql -u root -p

 備註:百度很久出來的答案簡直呵呵呵,重複率極高,必應搜到的答案,解決了個人問題

相關文章
相關標籤/搜索