我正在创建一个Laravel队列来处理视频。当我运行命令
php artisan队列:收听--queue = processVideo
我收到错误:
> [2019-01-26 01:13:06][5] Processing: App\Jobs\ProcessVideo
>
> Symfony\Component\Process\Exception\ProcessSignaledException : The
> process has been signaled with signal "11".
>
> at /var/www/api/vendor/symfony/process/Process.php:426
> 422| usleep(1000);
> 423| }
> 424|
> 425| if ($this->processInformation['signaled'] && $this->processInformation['termsig'] !== $this->latestSignal) {
> > 426| throw new ProcessSignaledException($this);
> 427| }
> 428|
> 429| return $this->exitcode;
> 430| }
>
> Exception trace:
>
> 1 Symfony\Component\Process\Process::wait()
> /var/www/api/vendor/symfony/process/Process.php:235
>
> 2 Symfony\Component\Process\Process::run(Object(Closure))
> /var/www/api/vendor/laravel/framework/src/Illuminate/Queue/Listener.php:175
我不知道发生了什么。我唯一能找到的问题是在/ var / log / syslog中,其中mbstring segfaults。
我精打细算,可以使用一些指导/协助,甚至只是一些指导。