0
votes

Illuminate\Database\QueryException : SQLSTATE[HY000] [2002] Connection refused (SQL: select * from information_schema.tables where table_schema = pracatice and table_name = migrations)

2

2 Answers

0
votes
  1. First check the composer require doctrine/dbal is installed if this composer is not installed then install it
  2. Check the database port number is correct or not with other information like DB_HOST=127.0.0.1,DB_PORT=3307,DB_DATABASE=pracatice,DB_USERNAME=root,DB_PASSWORD=
  3. Check the files permission for project this is also most important for running php artisan migrate
  4. Then retry php artisan migrate
0
votes

In the .env file, try to change your DB_HOST from localhost to 127.0.0.1.