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

后端 未结 30 2582
南方客
南方客 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:55

    I had this problems when I was running my application using docker containers.

    The solution was put the name of the MySQL service container I was using in docker_compose.yml on DB_HOST. In my case, it was db :

    DB_HOST=db
    

    Hope it helps.

提交回复
热议问题