Отказ в соединении SQL: выберите * из информационных_схем.таблиц, где table_schema = firstdb и table_name = migrations и table_type = 'BASE TABLE - PullRequest
0 голосов
/ 16 апреля 2020

У меня установлен и включен XAMPP, так я получаю доступ к своей странице phpmyadmin. Я создал базу данных в phpmyadmin под названием "firstdb".

Я также создал аутентификацию в laravel файлах, хранящихся локально. Я пытаюсь перенести таблицы, используя php artisan migrate, и я получаю сообщение об ошибке ниже.

user@Andress-MacBook-Pro admin-panel % php artisan migrate

   Illuminate\Database\QueryException 

  SQLSTATE[HY000] [2002] Connection refused (SQL: select * from information_schema.tables where table_schema = firstdb and table_name = migrations and table_type = 'BASE TABLE')

  at vendor/laravel/framework/src/Illuminate/Database/Connection.php:671
    667|         // If an exception occurs when attempting to run a query, we'll format the error
    668|         // message to include the bindings with SQL, which will make this exception a
    669|         // lot more helpful to the developer instead of just the database's errors.
    670|         catch (Exception $e) {
  > 671|             throw new QueryException(
    672|                 $query, $this->prepareBindings($bindings), $e
    673|             );
    674|         }
    675| 

      +37 vendor frames 
  38  artisan:37
      Illuminate\Foundation\Console\Kernel::handle(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))

Я посмотрел везде, пожалуйста, помогите.

...