首先,环境:ubuntu 14.04,采用apt-get的方式安装的,手动安装可能路径设置稍有区别。
1、安装MySQL后,用命令行首次启动时发现找不到Mysqld.sock文件,提示:
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2),如图:
2、网上的方法很多不实用,这里介绍一种最简单的方法来解决这个问题。
# sudo /etc/init.d/mysql restart
注意:个人在CentOS6.5环境下遇到此问题,此法行不通。
3、问题的根源在:/etc/mysql/my.cnf里
root@pc:/etc# cd mysql/
root@pc:/etc/mysql# ls
conf.d debian.cnf debian-start my.cnf
root@pc:/etc/mysql# vim my.cnf
这里有有关mysqld.sock的设置,MySQL按照这个默认设置去找时,没有找到。
![](https://images.cnblogs.com/OutliningIndicators/ContractedBlock.gif)
![](https://images.cnblogs.com/OutliningIndicators/ExpandedBlockStart.gif)
如果更改这里的路径问题会很麻烦,因此采用此法法解决。如下:root@pc:/# sudo /etc/init.d/mysql restart* Stopping MySQL database server mysqld [ OK ]* Starting MySQL database server mysqld [ OK ]* Checking for tables which need an upgrade, are corrupt or werenot closed cleanly.root@pc:/# mysql -uroot -pEnter password:Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 43。。。。。。Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql> OK,解决了。