so I want to deploy my existing laravel object in my digitalocean vps. I use this site and successfully upload my site.
also my env file
APP_ENV=local
APP_KEY=my app key
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://localhost
DB_CONNECTION=mysql
DB_HOST=my ip
DB_PORT=3306
DB_DATABASE=form
DB_USERNAME=root
DB_PASSWORD=my pass
but here is the problem
I used mysql and created and started php artisan migrateand got these errors, what is the problem
[Illuminate \ Database \ QueryException] SQLSTATE [HY000] [2002] Connection rejected (SQL: select * from information_schemes. Tables where table_schema = form and table_name = migrations)
and
[PDOException] SQLSTATE [HY000] [2002] Connection refused
source
share