Laravel 6.4.1 SQLSTATE[HY000] [2002] Connection refused

前端 未结 10 2073
隐瞒了意图╮
隐瞒了意图╮ 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:28

    Try out doing

    php artisan config:cache

    then on your .env file specify your database and your port

    DB_CONNECTION=mysql
    DB_HOST=127.0.0.1
    DB_PORT=3306
    DB_DATABASE= YOUR_DATABASE_NAME
    DB_USERNAME=root
    DB_PASSWORD=
    

    then run your mysql server and run

    php artisan migrate

    Note: Make sure your Xammp server is perfectly fine & have already started mysql (using apache server or any server you are using) and also make sure you already created your database before running php artisan migrate Hope it works for you

提交回复
热议问题