Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Laravel 5 error SQLSTATE[HY000] [1045] Access denied for user 'forge'@'localhost' (using password: NO)

Sometimes (about every 20 request) I get this error. But the next (next second), the same request, is fine. I dont know why it failed the first one. Sometimes i can get another error :

No supported encrypter found. The cipher and / or key length are invalid.

My .env database parameters are fine.

I have generated a key using php artisan key:generate

This key is in my .env file under a APP_KEY key

My config/app.php has a key 'key' => env('APP_KEY'), 'cipher' => 'AES-256-CBC'

does anyone have ANY idea how this can happen?

like image 403
Ulana Avatar asked Feb 09 '17 22:02

Ulana


3 Answers

Just cache your config using

php artisan config:cache

Don't forget to do this every time after setting your .env file.

like image 184
Chan Yung Keat Avatar answered Oct 24 '22 20:10

Chan Yung Keat


I had this exact same problem for the past few days and I think I solved it:

The settings in .env are not always used for some reason or other and occasionally Laravel will just use the default settings in config/app.php and config/database.php.

config/app.php:

'key' => env('APP_KEY', 'SomeRandomString'),

'cipher' => 'AES-256-CBC',

Change the 'SomeRandomString' to the generated key from your .env

config/database.php

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

Change localhost, database, username, password to your actual settings from the .env. This example is for MySQL if you use another database, change those variables instead.

There might be a better solution (more secure?) but this is what so far kept the error from showing up.

like image 35
Marnix Avatar answered Oct 24 '22 18:10

Marnix


You have to delete bootstrap/cache/config.php

like image 42
Mizbah Ahmed Avatar answered Oct 24 '22 18:10

Mizbah Ahmed