当前位置:Gxlcms > mysql > mysql中异常错误ERROR:2002的解决方法

mysql中异常错误ERROR:2002的解决方法

时间:2021-07-01 10:21:17 帮助过:42人阅读

最近在启动mysql 报错,错误提示如下:

ERROR 2002 (HY000): Can't connect to local MySQL server through socket ‘/var/lib/mysql/mysql.sock' (2)

排查过程

1、先查看 /etc/rc.d/init.d/mysqld status 看看mysql是否已经启动.

另外看看是不是权限问题.

2、确定你的mysql.sock是不是在那个位置,

mysql -u 你的mysql用户名 -p -S /var/lib/mysql/mysql.sock

3、试试:service mysqld start

4、如果是权限问题,则先改变权限 #chown -R mysql:mysql /var/lib/mysql

[root@localhost ~]# /etc/init.d/mysqld start
启动 MySQL: [ 确定 ]
[root@localhost ~]# mysql -u root -p
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)

原因是,/var/lib/mysql 的访问权限问题。

shell> chown -R mysql:mysql /var/lib/mysql

接着启动服务器

shell> /etc/init.d/mysql start

服务器正常启动后察看 /var/lib/mysql 自动生成mysql.sock文件。

但是我的问题仍然没有得到解决。

问题终于解决:

方法: 修改/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

发现依旧如此,运行/etc/init.d/mysql start报错:Starting MySQLCouldn't find MySQL manager or server是mysqld服务没启,运行/usr/local/mysql/bin/mysqld_safe &

问题解决。

总结

好了,以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者使用mysql能带来一定的帮助,如果有疑问大家可以留言交流。谢谢大家对脚本之家的支持。

您可能感兴趣的文章:

  • Windows安装MySQL8.0.16 的步骤及出现错误问题解决方法
  • MySQL错误代码1862 your password has expired的解决方法
  • mysql出现提示错误10061的解决方法
  • MySql插入数据成功但是报[Err] 1055错误的解决方案
  • navicat连接mysql时出现1045错误的解决方法
  • mysql中错误:1093-You can’t specify target table for update in FROM clause的解决方法
  • Mysql错误Every derived table must have its own alias解决方法

人气教程排行