• 技术文章 >后端开发 >php教程

    php没法使用localhost连接mysql服务器

    2016-06-13 13:14:43原创297
    php无法使用localhost连接mysql服务器
    在redhat下安装了mysql,在mysql控制台下,可以使用localhost连接,但是在php中连接时,却不行,而使用127.0.0.1能连上,查看了hosts文件,发现有127.0.0.1和localhost的对应

    哪位大侠知道是怎么回事

    ------解决方案--------------------
    是不是你在建站点的时候设置了站点为http://127.0.0.1了呢?
    ------解决方案--------------------
    看一看你的mysql是怎么配置的,
    检查mysql启动后/usr/local/mysql/var/mysql.sock是否存在。
    ------解决方案--------------------
    Description
    A frequent error message received when using the mysql command line utility is: Can 't connect to local MySQL server through socket '/tmp/mysql.sock ' While this error message can be frustrating, the solution is simple.

    Directions
    When connecting to a MySQL server located on the local system, the mysql client connects thorugh a local file called a socket instead of connecting to the localhost loopback address 127.0.0.1. For the mysql client, the default location of this socket file is /tmp/mysql.sock. However, for a variety of reasons, many MySQL installations place this socket file somewhere else like /var/lib/mysql/mysql.sock.

    While it is possible to make this work by specifying the socket file directly in the mysql client command

    mysql --socket=/var/lib/mysql/mysql.sock ...


    it is painful to type this in every time. If you must do so this way (because you don 't have permissions to the file in the solution below), you could create an alias in your shell to make this work

    (like alias mysql= "mysql --socket=/var/lib/mysql/mysql.sock " depending on your shell).

    To make your life easier, you can make a simple change to the MySQL configuration file /etc/my.cnf that will permanently set the socket file used by the mysql client. After making a backup copy of /etc/my.cnf, open it in your favorite editor. The file is divided into sections such as

    [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

    If there is already a [client] section in the my.cnf file, add or edit the socket line as appropriate. You won 't need to restart your server or any other processes. Subsequent uses of the mysql client will use the proper socket file.

    声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
    专题推荐:mysql the socket file client
    上一篇: PHP in_array函数的一个风险用法 下一篇: 数据库查询中一个百思不得其解的有关问题,有详细说明
    PHP编程就业班

    相关文章推荐

    • PHP集成环境推荐解决思路 • 各位大大一起来帮忙看一下!解决办法 • PHP:路在何方?• 【PHP开发】国外程序员收集整理的 PHP 资源大全,国外收集整理_PHP教程• 解密ThinkPHP3.1.2版本之模板继承_PHP教程

    全部评论我要评论

  • 取消发布评论发送
  • 1/1

    PHP中文网