启动supervisorctl时,laravel队列工作进程出现错误(生成错误)。

8

我已经安装了supervisor,并且它似乎正在运行。我把队列工作器的配置文件放在了/etc/supervisor/conf.d/laravel-worker.conf中。

它看起来像这样:

[program:laravel-worker]
process_name=%(program_name)s_%(process_num)02d
command=php /var/www/html queue:work database --sleep=3 --tries=2 --daemon
autostart=true
autorestart=true
numprocs=4
redirect_stderr=true
stdout_logfile=/var/www/html/storage/logs/laravel.log

我的 supervisord.conf 看起来像这样

[unix_http_server]
file=/var/run/supervisor.sock   ; (the path to the socket file)
chmod=0775                       ; sockef file mode (default 0700)
chown=root

[supervisord]
logfile=/var/log/supervisor/supervisord.log ; (main log file;default $CWD/supervisord.log)
pidfile=/var/run/supervisord.pid ; (supervisord pidfile;default supervisord.pid)
childlogdir=/var/log/supervisor            ; ('AUTO' child log dir, default $TEMP)

; the below section must remain in the config file for RPC
; (supervisorctl/web interface) to work, additional interfaces may be
 ; added by defining them in separate rpcinterface: sections
 [rpcinterface:supervisor]
 supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface

[supervisorctl]
serverurl=unix:///var/run/supervisor.sock ; use a unix:// URL  for a unix socket

; The [include] section can just contain the "files" setting.  This
; setting can list multiple files (separated by whitespace or
; newlines).  It can also contain wildcards.  The filenames are
; interpreted as relative to this file.  Included files *cannot*
; include files themselves.

[include]
files = /etc/supervisor/conf.d/*.conf

当我尝试启动进程时,出现错误 - ERROR (spawn error)。

当我查看日志文件时,显示:

2017-05-28 22:21:20,697 INFO exited: laravel-worker_01 (exit status 0; not expected)
2017-05-28 22:21:20,702 INFO exited: laravel-worker_00 (exit status 0; not expected)
2017-05-28 22:21:20,704 INFO exited: laravel-worker_02 (exit status 0; not expected)
2017-05-28 22:21:20,706 INFO exited: laravel-worker_03 (exit status 0; not expected)
2017-05-28 22:21:23,711 INFO spawned: 'laravel-worker_00' with pid 16280
2017-05-28 22:21:23,713 INFO spawned: 'laravel-worker_01' with pid 16281
2017-05-28 22:21:23,715 INFO spawned: 'laravel-worker_02' with pid 16282
2017-05-28 22:21:23,719 INFO spawned: 'laravel-worker_03' with pid 16283
2017-05-28 22:21:23,772 INFO exited: laravel-worker_02 (exit status 0; not expected)
2017-05-28 22:21:23,774 INFO gave up: laravel-worker_02 entered FATAL state, too many start retries too quickly
2017-05-28 22:21:23,774 INFO exited: laravel-worker_01 (exit status 0; not expected)
2017-05-28 22:21:23,776 INFO gave up: laravel-worker_01 entered FATAL state, too many start retries too quickly
2017-05-28 22:21:23,776 INFO exited: laravel-worker_03 (exit status 0; not expected)
2017-05-28 22:21:23,777 INFO gave up: laravel-worker_03 entered FATAL state, too many start retries too quickly
2017-05-28 22:21:23,777 INFO exited: laravel-worker_00 (exit status 0; not expected)
2017-05-28 22:21:24,778 INFO gave up: laravel-worker_00 entered FATAL state, too many start retries too quickly

我已经确认我的配置文件中的所有文件都存在。我不确定我是否在laravel-worker.conf中使用了正确的配置。我搜索了文档和其他stackoverflow线程,但没有找到解决方案。


作为快速排除故障的方法,您可以在cli上运行/etc/supervisor/conf.d/laravel-worker.conf文件中的命令值,它很可能会告诉您生成错误的源。在这种情况下,命令值是php /var/www/html queue:work database --sleep=3 --tries=2 --daemon - Isaiahiroko
8个回答

22

我通过重新启动supervisor解决了问题。

sudo service supervisor reload

16

问题似乎出在我的laravel-worker上,我需要通过将路径添加'/artisan'来完成命令路径,如下所示 -

所以问题显然是出在我的laravel-worker上。我需要通过在路径末尾添加 "/artisan" 来完整命令路径,像这样 -
[program:laravel-worker]
process_name=%(program_name)s_%(process_num)02d
command=php /var/www/html/artisan queue:work database --sleep=3 --tries=2 --daemon

5

我也遇到了同样的问题,当我正确指定队列名称后,问题得到了解决。

command=php /home/vagrant/code/prject1/artisan queue:work redis --queue=email --sleep=3 --tries=1 --daemon

以下是我的工作文件 laravel-worker.conf

执行


1

如果您使用的是 Laravel 7 或更低版本,则在命令中传递选项时可能会遇到错误。在我的情况下,删除这些选项可以解决问题。

将这一行:

command=php /var/www/html queue:work database --sleep=3 --tries=2 --daemon

改为:

command=php /var/www/html queue:work


1

你需要在配置文件中添加Artisan并在配置文件中添加用户。

例如:

[program:laravel-worker]
process_name=%(program_name)s_%(process_num)02d
command=php /home/site.com/kernel/artisan queue:work --sleep=3 -- 
tries=3
autostart=true
autorestart=true
user=root
numprocs=10
redirect_stderr=true
stdout_logfile=/home/site.com/kernel/worker.log

0

你可以通过查看日志文件来了解错误类型

stdout_logfile=/var/www/html/storage/logs/laravel.log

0

/config文件夹中的配置文件出现错误时,我遇到了这个问题。


0

或者如果 service supervisor reload 不起作用,你可以使用 service supervisor restart


这不是对问题的回答。一旦您具有足够的声望,您将能够评论任何帖子;相反地,提供不需要询问者澄清的答案。-来自审查 - António Ribeiro

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接