Laravel SQLSTATE[HY000] [2002] 连接被拒绝

2022-08-30 17:02:43

所以我想将我现有的Laravel项目部署到我的数字海洋VPS中,我使用了本教程,并成功上传了我的网站。

我的文件是:.env

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

但问题是:我使用MySQL并创建并运行

php artisan migrate

并得到这些错误:

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

[PDOException] SQLSTATE[HY000] [2002] Connection refused

答案 1

在文件中,从 更改为.envDB_HOST127.0.0.1localhost


答案 2

放置字符串:

DB_SOCKET=/Applications/MAMP/tmp/mysql/mysql.sock

DB_PASSWORD之后=

它适用于MAMP。将路径设置为 mysql.sock


推荐