首页 > 解决方案 > Laravel:Symfony\Component\Process\Exception\RuntimeException :进程已收到信号“6”的信号

问题描述

每当我运行
"php artisan make:migration create_team_table --create=team"
创建迁移文件时,我都会得到以下输出:

Created Migration: 2018_05_09_115803_create_team_table

Symfony\Component\Process\Exception\RuntimeException  : The process has been signaled with signal "6".

/home/webdev/public_html/vendor/symfony/process/Process.php: 392


       if ($this->processInformation['signaled'] && $this->processInformation['termsig'] !== $this->latestSignal) {
           throw new RuntimeException(sprintf('The process has been signaled with signal "%s".', $this->processInformation['termsig']));
       }

       return $this->exitcode;
   }

异常跟踪:

1   Symfony\Component\Process\Process::wait()
      /home/webdev/public_html/vendor/symfony/process/Process.php : 201

  2   Symfony\Component\Process\Process::run()
      /home/webdev/public_html/vendor/laravel/framework/src/Illuminate/Support/Composer.php : 50

请使用参数 -v 查看更多详细信息。

谁能告诉我为什么我会得到那个运行时异常?

标签: phplaravel

解决方案


推荐阅读