SQLSTATE[HY000] [2002] 无法建立连接

SQLSTATE[HY000] [2002] No Connection Could Be Made

我是 Laravel 的新手。当我迁移 table 时,出现以下错误。

PDOException::("SQLSTATE[HY000] [2002] No connection could be made because the target machine actively refused it.

数据库信息

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3036
DB_DATABASE=Monu
DB_USERNAME=root
DB_PASSWORD=''

当我键入 php artisan migrate 时,我得到了那个错误。

尝试将 127.0.0.1 更改为本地主机,让我知道是否可以:D 如果不行,请尝试创建一个除 root 以外的用户,该用户对您的 laravel DB

具有完全权限

将端口更改为 DB_PORT=3306 运行 以下命令

1.php artisan config:clear

2.php artisan cache:clear