Search code examples
phpmysqllaravelxampp

SQLSTATE[HY000] [2002] No Connection Could Be Made


I'm new to Laravel. When I migrated my table I got the following error.

PDOException::("SQLSTATE[HY000] [2002] No connection could be made because the target machine actively refused it.

Database info

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3036
DB_DATABASE=Monu
DB_USERNAME=root
DB_PASSWORD=''

When I type php artisan migrate I get that error.


Solution

  • change port to DB_PORT=3306 the run the following commands

    1.php artisan config:clear

    2.php artisan cache:clear