phpmysqllaravelpdomigrate

mysql server has gone away error during installing migration (laravel)


So I am using my cmd on my laravel folder and I tried to do (php artisan migrate:install). 2 errors came up.

  1. [PDOException] SQLSTATE[HY000] [2006] MySQL server has gone away

  2. [ErrorException] PDO::__construct(): MySQL server has gone away

Can anyone please explain what I did wrong?


Solution

  • This is not a Laravel issue, but a general MySQL Issue. Maybe the server is not running. Are you sure you're running MySQL in the background?

    Check this link: MySQL Gone Away

    Do the following checks in your system:

    1. The Database Engine is running
    2. You have created your database
    3. You have created an user and granted permissions to the database
    4. You have setup the user and the database in your Laravel's .env file.

    After this, try to run the migrations command again, which is:

    php artisan migrate
    

    As explained Here

    Let us know if that helps :).