嘿,刚开始使用Laravel,但是无法运行迁移。我遵循laravel网站上的文档并安装了XXAMP。服务器正在运行,当我输入http://192.168.64.2/phpmyadmin时,它将带我到phpmyadmin仪表板。也成功创建了数据库。 但是,当我尝试运行迁移时,它会提示我
php artisan migrate -v
Illuminate\Database\QueryException : SQLSTATE[HY000] [2002] No such file or directory (SQL: select * from information_schema.tables where table_schema = tutorial and table_name = migrations and table_type = 'BASE TABLE')
at /Users/bobo/Desktop/Developers/php/myfirstsite/vendor/laravel/framework/src/Illuminate/Database/Connection.php:664
660| // If an exception occurs when attempting to run a query, we'll format the error
661| // message to include the bindings with SQL, which will make this exception a
662| // lot more helpful to the developer instead of just the database's errors.
663| catch (Exception $e) {
> 664| throw new QueryException(
665| $query, $this->prepareBindings($bindings), $e
666| );
667| }
668|
Exception trace:
1 PDOException::("SQLSTATE[HY000] [2002] No such file or directory")
/Users/bobo/Desktop/Developers/php/myfirstsite/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:70
2 PDO::__construct("mysql:host=localhost;port=3306;dbname=tutorial", "root", "12345", [])
/Users/bobo/Desktop/Developers/php/myfirstsite/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:70
这是我的环境文件
DB_CONNECTION=mysql
DB_HOST=localhost
DB_PORT=3306
DB_DATABASE=tutorial
DB_USERNAME=root
DB_PASSWORD=