Laravel migrate unknown database

依然范特西╮ 提交于 2020-01-25 14:25:06

问题


I am having some errors with laravels php artisan migrate command, when I try to migrate, it keeps throwing errors saying, unknown database 'database name' I have checked my database configure file and even copied to a different project and it works perfectly there, I have tried composer dump-autoload command but that didn't solve the problem either. Please I will really appreciate if someone helps, since this is a new project and can't afford to lose even a minute to my deadline, thanks in advance!

The command I run from the terminal while I have CD'ed into the project folder is.

php artisan migrate

This is the error I get.

[PDOException]
SQLSTATE[42000] [1049] Unknown database '[gicfamily4]'

回答1:


[PDOException]
SQLSTATE[42000] [1049] Unknown database '[gicfamily4]'

This is a MySQL error and is indicative of either a misconfiguration in your environment's database.php config file (misspelling in the database name) or the database gicfamily4 simply doesn't exist on the database server you are connecting to.

Verify your connection information again. If possible, try to attempt to connect to the mysql server from the command line using the exact same information contained in your database.php file (via copy and paste):

$ mysql -u <username from database.php file> -p -h <database host from database.phpfile>
Enter Password: <paste password from database.php file>

mysql> use gicfamily4;

I suspect you will get the exact same error as above.



来源:https://stackoverflow.com/questions/25921825/laravel-migrate-unknown-database

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!