Mysql gui tools that I use to connect to my database is sql yog
I connect use data from env laravel
If I connect with data from env localhost, it works
If I connect with data from staging server, it does not works
My env localhost like this :
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=myshop
DB_USERNAME=root
DB_PASSWORD=secret
I try in sql yog like this :
I use db host, db port, username and password from env to connect in sql yog like that
It works
My env server staging like this :
DB_CONNECTION=mysql
DB_HOST=xx.xxx.xx.xx
DB_PORT=3306
DB_DATABASE=myshop
DB_USERNAME=forge
DB_PASSWORD=xxxxxxxxxxxxxxx
I use the data to connect with sql yog
There exist error like this :
How can I solve this error?