أحاول إستخدام Laravel Sail عند إنشاء مشروع لارافيل قمت بتنفيذ الأمر:
curl -s https://laravel.build/sail-test | bash
ثم نفذت الأمر:
cd sail-test && ./vendor/bin/sail up
كل شيء تم بشكل صحيح و عند تجربة المشروع من خلال http://localhost. يعمل بشكل جيد لكن عند تنفيذ أمر التهجير:
sail artisan migrate:install
يظهر الخطأ:
Illuminate\Database\QueryException
SQLSTATE[HY000] [2002] No route to host (SQL: create table `migrations` (`id` int unsigned not null auto_increment primary key, `migration` varchar(255) not null, `batch` int not null) default character set utf8mb4 collate 'utf8mb4_unicode_ci')
at vendor/laravel/framework/src/Illuminate/Database/Connection.php:678
674▕ // If an exception occurs when attempting to run a query, we'll format the error
675▕ // message to include the bindings with SQL, which will make this exception a
676▕ // lot more helpful to the developer instead of just the database's errors.
677▕ catch (Exception $e) {
➜ 678▕ throw new QueryException(
679▕ $query, $this->prepareBindings($bindings), $e
680▕ );
681▕ }
682▕
+29 vendor frames
30 artisan:37
Illuminate\Foundation\Console\Kernel::handle()
السؤال
Mahmoud Alrashidi
أحاول إستخدام Laravel Sail عند إنشاء مشروع لارافيل قمت بتنفيذ الأمر:
curl -s https://laravel.build/sail-test | bash
ثم نفذت الأمر:
cd sail-test && ./vendor/bin/sail up
كل شيء تم بشكل صحيح و عند تجربة المشروع من خلال http://localhost. يعمل بشكل جيد لكن عند تنفيذ أمر التهجير:
sail artisan migrate:install
يظهر الخطأ:
Illuminate\Database\QueryException SQLSTATE[HY000] [2002] No route to host (SQL: create table `migrations` (`id` int unsigned not null auto_increment primary key, `migration` varchar(255) not null, `batch` int not null) default character set utf8mb4 collate 'utf8mb4_unicode_ci') at vendor/laravel/framework/src/Illuminate/Database/Connection.php:678 674▕ // If an exception occurs when attempting to run a query, we'll format the error 675▕ // message to include the bindings with SQL, which will make this exception a 676▕ // lot more helpful to the developer instead of just the database's errors. 677▕ catch (Exception $e) { ➜ 678▕ throw new QueryException( 679▕ $query, $this->prepareBindings($bindings), $e 680▕ ); 681▕ } 682▕ +29 vendor frames 30 artisan:37 Illuminate\Foundation\Console\Kernel::handle()
كيف يُمكن حل المُشكلة؟
3 أجوبة على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.