Эй, только что начал использовать 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
Вот мой файл env
DB_CONNECTION=mysql
DB_HOST=localhost
DB_PORT=3306
DB_DATABASE=tutorial
DB_USERNAME=root
DB_PASSWORD=