• MySQL笔记-最简单的方法来解决找不到mysqld.sock文件的问题


     首先,环境: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按照这个默认设置去找时,没有找到。

    如果更改这里的路径问题会很麻烦,因此采用此法法解决。如下:
    
    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 were
    
    not closed cleanly.
    
    root@pc:/# mysql -uroot -p
    
    Enter 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,解决了。
    View Code
  • 相关阅读:
    document.all用法
    $.ajax同步/异步(async:false/true)
    link 和@import 的区别
    如何对网页的加载进行性能优化
    border-style有哪些值?
    CSS设置DIV居中
    jquery选择器
    jQuery库中获取jQuery对象的方式
    Observer,观察者模式,C++描述
    Iterator,迭代器模式,C++描述
  • 原文地址:https://www.cnblogs.com/chinas/p/4378006.html
Copyright © 2020-2023  润新知