Francisco Sanchez
Francisco Sanchez

Reputation: 21

Laravel Migration Postgres error SQLSTATE[08006]

I want to connect Laravel with Postgresql database

when I run

php artisan migrate

I get this error

SQLSTATE[08006] [7] timeout expired (SQL: select * from information_schema.tables where table_schema = public and table_name = migrations)

my .env

DB_CONNECTION=pgsql
DB_HOST=projects.cggts***.rds.amazonaws.com
DB_PORT=5432
DB_DATABASE=projects
DB_USERNAME=*********
DB_PASSWORD=*********

Upvotes: 2

Views: 3791

Answers (1)

AgE
AgE

Reputation: 667

It'll probably inbound VPC problem on AWS . You have to update IP range for your RDS db. You'll find it under EC2->Network & Security->Security Groups . Have fun ;)

Upvotes: 2

Related Questions