0
votes

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.

2
have you changed the default port of mysql?Ahmed Nour Jamal El-Din

2 Answers

1
votes

change port to DB_PORT=3306 the run the following commands

1.php artisan config:clear

2.php artisan cache:clear

0
votes

Try changing the 127.0.0.1 to localhost and let me know if that does it :D If thats not it try create a user other than root with full privileges over your laravel DB