Mysql连接提示:

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

如下:

  1. [root@cacti01 ~]# mysql 
  2. ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2) 
  3. [root@cacti01 ~]# mysql -h localhost -p -u root 
  4. Enter password:  
  5. ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2) 

而那个文件是压根不存在的:

  1. [root@cacti01 ~]# more /var/lib/mysql/mysql.sock 
  2. /var/lib/mysql/mysql.sock: No such device or address 

经查为mysqld服务没启动,启动后登录正常。

  1. [root@cacti01 ~]# service mysqld start 
  2. Starting mysqld:                                           [  OK  ] 
  3. [root@cacti01 ~]# mysql 
  4. Welcome to the MySQL monitor.  Commands end with ; or \g. 
  5. Your MySQL connection id is 2 
  6. Server version: 5.1.61 Source distribution 
  7.  
  8. Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved. 
  9.  
  10. Oracle is a registered trademark of Oracle Corporation and/or its 
  11. affiliates. Other names may be trademarks of their respective 
  12. owners. 
  13.  
  14. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. 
  15.  
  16. mysql> 

状态查询:

  1. [root@cacti01 ~]# service mysqld status 
  2. mysqld (pid  16211) is running... 

正常后上面的那个文件还是不存在的,所以跟那个没有关系。