laravel php artisan migrate 报错


我执行


 php artisan migrate

报错


 [PDOException]
  SQLSTATE[HY000] [2002] No such file or directory

我在网上查找了资料,对 .env database.php 文件配置都没问题


 DB_HOST=localhost
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret

其中根据说法修改下面配置为 127.0.0.1 0.0.0.0 均无效


 DB_HOST=localhost

另外此命令也无效


 php artisan migrate --env=production

laravel homestead php

eqide 9 years, 4 months ago

已解决

修改 database.php


 'host' => env('DB_HOST', 'localhost') . ('homestead' == gethostname() ? null : ':33060'),


更新:

我是在Mac宿主机执行的命令,所以需要指定映射的端口号:33060
如果你直接在homestead虚机中执行是不用指定的,因为默认就是3306

白井黑子   answered 9 years, 4 months ago

Your Answer