zoukankan      html  css  js  c++  java
  • mysql

    http://www.jianshu.com/p/b401ad6ba1a7



    Can't connect to local MySQL server through socket 问题解决

    1、先查看 /etc/rc.d/init.d/mysqld status 看看mysql服务是否已经启动.
    另外看看是不是权限问题.
    $service mysqld start

    $service mysql start
    --我开始遇到的就是因为服务没启动,因为第一次玩mysql不是很熟悉,呵呵。

    2、确定你的mysql.sock是不是在那个位置,
    mysql -u 你的mysql用户名 -p -S /var/lib/mysql/mysql.sock

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

    [root@localhost ~]# /etc/init.d/mysqld start
    启动 MySQL: [ 确定 ]
    [root@localhost ~]# mysql -uroot -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文件。

    4、修改/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 &

  • 相关阅读:
    HTTP content-type
    python3学习--安装OCR识别库tesserocr
    http post get 类库 httphelper
    MD5
    解决python3中cv2读取中文路径的问题
    web api获得Post数据为空的解决办法
    python3项目打包成exe可执行程序
    pip install 使用国内镜像
    win10家庭版组策略安装
    在国企的日子(第七章 转正)
  • 原文地址:https://www.cnblogs.com/starainDou/p/5370341.html
Copyright © 2011-2022 走看看