Recently, an error occurred while starting MySQL. The error message is as follows: ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2) Troubleshooting process 1. First check Also check if it's a permissions issue. 2. Make sure your mysql.sock is in that location. mysql -u yourmysqlusername -p -S /var/lib/mysql/mysql.sock 3. Try: 4. If it is a permission problem, change the permission first [root@localhost ~]# /etc/init.d/mysqld start Start MySQL: [ OK ] [root@localhost ~]# mysql -u root -p ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2) The reason is the access permission problem of /var/lib/mysql. shell> chown -R mysql:mysql /var/lib/mysql Then start the server shell> /etc/init.d/mysql start After the server starts normally, check /var/lib/mysql and automatically generate the mysql.sock file. But my problem is still not solved. The problem is finally solved: Method: Modify /etc/my.conf: [mysqld] datadir=/usr/local/mysql/data socket=/var/lib/mysql/mysql.sock [mysql.server] user=mysql basedir=/usr/local/mysql If there is not currently a section called [client], add one at the bottom of the file and copy the socket= line under the [mysqld] section such as: [client] socket=/var/lib/mysql/mysql.sock I still found that the same thing happened. I ran Problem solved. Summarize Well, that’s all for this article. I hope that the content of this article can be helpful to your study or use of MySQL. If you have any questions, please leave a message to communicate. Thank you for your support of 123WORDPRESS.COM. You may also be interested in:
|
>>: Best tools for taking screenshots and editing them in Linux
Two problems that are easy to encounter when inst...
CSS3 syntax: (1rem = 100px for a 750px design) @m...
Table of contents 1. Advantages of proxy vs. Obje...
Preface I recently encountered some problems at w...
In the case of complete separation of the front-e...
1. Download MySQL Log in to the MySQL official we...
When writing my own demo, I want to use display:f...
Table of contents 1. Installation 2. Introduction...
background Speaking of MySQL deadlock, I have wri...
Let’s look at the effect first: This effect looks...
Let's take an example: The code is very simple...
Prepare the database (MySQL). If you already have...
Table of contents Summarize Summarize When the ar...
Event bubbling, event capturing, and event delega...
Before using idea to write JSP files, you need to...