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

后端 未结 3 580
走了就别回头了
走了就别回头了 2021-01-11 17:57

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 anot

3条回答
  •  醉酒成梦
    2021-01-11 18:43

    I just experienced this after merging in changes from git without updating the .env file.

    Basically, the person changed the code so that the application required these keys in the env file:

    DB_SOME_DATABASE=something
    DB_SOME_USERNAME=something
    DB_SOME_PASSWORD=something
    

    But I still had the old credentials in there, so it "looked correct", but Laravel was throwing this error that made it look like the env file wasn't being used.

    This would indicate that, if you see this, check very closely if anything is spelled wrong in your .env file that would cause Laravel to attempt to use the default values (ie: look in the folder config/database.php where you see 'forge').

    It may not be a typo. Someone may have added a database connection and maybe you haven't updated your .env file yet.

提交回复
热议问题