Access denied for user 'homestead'@'localhost' (using password: YES)

前端 未结 29 1802
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-27 10:23

I\'m on a Mac OS Yosemite using Laravel 5.0.

While in my local environment, I run php artisan migrate I keep getting :

29条回答
  •  被撕碎了的回忆
    2020-11-27 10:43

    If you have an error returning something like PDOException in Connector.php line 55: SQLSTATE[HY000] [1049] Unknown database 'laravelu' is due to you are changing your batabase config as DB_DATABASE=laravelu. So for now you either:

    1. Change the DB_DATABASE=[yourdatabase] or
    2. create a database called laravelu in your phpmyadmin

    this should be able to solve it

提交回复
热议问题