How to solve the abnormal error ERROR: 2002 in mysql

How to solve the abnormal error ERROR: 2002 in mysql

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 /etc/rc.d/init.d/mysqld status to see if mysql has been started.

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: service mysqld start

4. If it is a permission problem, change the permission first #chown -R mysql:mysql /var/lib/mysql

[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 /etc/init.d/mysql start and got an error: Starting MySQL Couldn't find MySQL manager or server. The mysqld service was not started. I ran /usr/local/mysql/bin/mysqld_safe &

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:
  • Summary of handling JDBC connection mysql garbled code exception problem
  • Solution to 1449 and 1045 exceptions when connecting to MySQL
  • SELinux causes PHP to connect to MySQL abnormally. Solution to Can't connect to MySQL server
  • Sharing of experience on repairing MySQL innodb exceptions
  • MySQL definition and exception handling details
  • Analysis of exception handling in mysql stored procedures
  • MySQL database connection exception summary (worth collecting)

<<:  Detailed explanation of the implementation of WeChat applet track playback and the pitfalls encountered

>>:  Best tools for taking screenshots and editing them in Linux

Recommend

Sample code for installing Jenkins using Docker

Two problems that are easy to encounter when inst...

Media query combined with rem layout in CSS3 to adapt to mobile screens

CSS3 syntax: (1rem = 100px for a 750px design) @m...

Proxy realizes the principle of two-way binding of Vue3 data

Table of contents 1. Advantages of proxy vs. Obje...

Summary of some reasons why crontab scheduled tasks are not executed

Preface I recently encountered some problems at w...

Vue implements user login and token verification

In the case of complete separation of the front-e...

MySQL 8.0.21.0 Community Edition Installation Tutorial (Detailed Illustrations)

1. Download MySQL Log in to the MySQL official we...

CSS achieves highly adaptive full screen

When writing my own demo, I want to use display:f...

Introducing ECharts into the Vue project

Table of contents 1. Installation 2. Introduction...

A magical MySQL deadlock troubleshooting record

background Speaking of MySQL deadlock, I have wri...

CSS3 realizes the animation effect of lotus blooming

Let’s look at the effect first: This effect looks...

Collapsed table row element bug

Let's take an example: The code is very simple...

Tutorial on Migrating Projects from MYSQL to MARIADB

Prepare the database (MySQL). If you already have...

Vue components dynamic components detailed explanation

Table of contents Summarize Summarize When the ar...

Detailed explanation based on event bubbling, event capture and event delegation

Event bubbling, event capturing, and event delega...

How to use IDEA to configure tomcat and create JSP files

Before using idea to write JSP files, you need to...