Laravel 6.4.1 SQLSTATE[HY000] [2002] Connection refused

前端 未结 10 2068
隐瞒了意图╮
隐瞒了意图╮ 2021-02-15 14:32

I am new in Laravel development. I have updated Xampp to 7.3.11 on my Mac Mojave 10.14.6. In Laravel project when I hit php artisan migrate command I got following error.

<
10条回答
  •  生来不讨喜
    2021-02-15 15:09

    I've come across this Error too by building up a new project with Laravel running in docker-compose for development.

    My solution was to compare the prebuild .env-File with the actual credentials I used for building the database container. Especially I was using DB_HOST=127.0.0.1 instead of the correct service name of my docker-compose setup: DB_HOST=mysql

提交回复
热议问题