gpt4 book ai didi

laravel-5 - Laravel 5 应用程序继续使用旧的数据库连接

转载 作者:行者123 更新时间:2023-12-02 23:14:15 24 4
gpt4 key购买 nike

PDOExceptionvendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:47

SQLSTATE[HY000] [1045] Access denied for user 'forge'@'localhost' (using password: YES)

我已经使用正确的凭据更新了 .env 文件(它甚至不再是 localhost,它是一个 IP 地址),但是我不断收到此错误消息。我也已经运行了 php artisan config:clear 。如何强制生产应用程序在其 .env 文件中使用新凭据?

我的 config/database.php 是标准的:

'connections' => [
'mysql' => [
'driver' => 'mysql',
'host' => env('DB_HOST', 'localhost'),
'database' => env('DB_DATABASE'),
'username' => env('DB_USERNAME'),
'password' => env('DB_PASSWORD'),
'port' => env('DB_PORT', '3306'),
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
'strict' => false,
],

],

最佳答案

运行以下 Artisan 命令,然后重试:

php artisan cache:clear

php artisan config:clear

php artisan config:cache

php artisan route:clear

php artisan route:cache

关于laravel-5 - Laravel 5 应用程序继续使用旧的数据库连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30609092/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com