PDOException发生在尝试运行php artisan migrate时


PDOException occurs while trying to run php artisan migrate

[PDOException]SQLSTATE[HY000] [2002] 没有这样的文件或目录

我正在尝试使用终端运行 php 工匠迁移命令。任何类型的帮助都将不胜感激。

如果您使用的是 MAMP,请务必添加具有 mysql.sock 驻留在 MAMP 中的路径值的unix_socket键。

'mysql' => array(
    'driver'    => 'mysql',
    'host'      => 'localhost',
    'unix_socket'   => '/Applications/MAMP/tmp/mysql/mysql.sock',
    'database'  => 'database',
    'username'  => 'root',
    'password'  => 'root',
    'charset'   => 'utf8',
    'collation' => 'utf8_unicode_ci',
    'prefix'    => '',
),