Laravel PDOException SQLSTATE[HY000] [1049] Unknown database 'forge'

后端 未结 23 2370
醉酒成梦
醉酒成梦 2020-12-25 11:51

I am using Laravel to connect to MySQL database.

I got this exception:

PDOException
SQLSTATE[HY000] [1049] Unknown database \'forge\'
23条回答
  •  無奈伤痛
    2020-12-25 12:32

    In my case the error was due to incorrect port number (the error is definitely due to incorrect credentials i.e. host/port/dbname/username/password).

    Solution:

    1. right click on WAMP tray;
    2. click (drag your cursor) on MySQL;
    3. see the port number used by MySQL;
    4. add same in your Laravel configuration:
      • .env file;
      • config/database.php.

    Clear cache php artisan config:cache

    Run migration php artisan migrate

提交回复
热议问题