时间:2021-07-01 10:21:17 帮助过:18人阅读
ERROR 2002 (HY000): Can‘t connect to local MySQL server through socket ‘/var/lib/mysql/mysql.sock‘ (2)
#上述原因是没有启动mysql服务
[root@Cacti ~]# /etc/init.d/mysqld start
正在启动 mysqld: [确定]
[root@Cacti ~]# chkconfig
mysqld 0:关闭 1:关闭 2:关闭 3:关闭 4:关闭 5:关闭 6:关闭
[root@Cacti ~]# chkconfig --level 345 mysqld on #设置开机自动启动mysql服务
[root@Cacti ~]# chkconfig --list mysqld
#通过IP连接数据库服务
[root@Cacti ~]# mysql -h ip -uroot -p
本文出自 “sky9890” 博客,请务必保留此出处http://sky9896.blog.51cto.com/2330653/1950876
没有正常启动mysql服务的状态
标签:msql