PDOException SQLSTATE[HY000] [2002] No such file or directory

后端 未结 30 2553
南方客
南方客 2020-11-22 03:23

I believe that I\'ve successfully deployed my (very basic) site to fortrabbit, but as soon as I connect to SSH to run some commands (such as php artisan migrate

30条回答
  •  梦如初夏
    2020-11-22 03:36

    Attempt to connect to localhost:

    SQLSTATE[HY000] [2002] No such file or directory
    

    Attempt to connect to 127.0.0.1:

    SQLSTATE[HY000] [2002] Connection refused
    

    OK, just comment / remove the following setting from my.cnf (on OS X 10.5: /opt/local/etc/mysqlxx/my.cnf) to obtain:

    [mysqld]
    # skip-networking
    

    Of course, stop and start MySQL Server.

提交回复
热议问题