当前位置: 代码迷 >> 综合 >> think-queue+supervisor 常驻进程队列处理
  详细解决方案

think-queue+supervisor 常驻进程队列处理

热度:90   发布时间:2023-11-16 22:07:30.0

 

安装:yum install -y supervisor

卸载:yum remove supervisor

启动supervisord: systemctl start supervisord

常驻进程:

https://www.jianshu.com/p/d5e95c7ae526

https://www.cnblogs.com/alienchan/articles/11451491.html

nohup php think queue:work --queue 队列名称 --tries 5 --sleep 3 --daemon 1>queue.log 2>&1 &

 

编辑 vi /etc/supervisord.conf

[program:queue]

command= php think queue:work --queue testQueue --daemon

directory=/home/wwwroot/golden_bag

;process_name=%(process_num)02d

;numprocs=5 ;启动几个进程

autostart=true ;随着supervisord的启动而启动

autorestart=true ;自动启动

startsecs=1 ;程序重启时候停留在runing状态的秒数

startretries=3 ;启动失败时的最多重试次数

redirect_stderr=true ;重定向stderr到stdout

stdout_logfile=/root/supervisor.log ;stdout文件

 

 

 

一、错误的解决方法

遇到“Another program is already listening on a port that one of our HTTP servers is configured to use.”这个报错是因为 Supervisor 已经启动了,这个时候如果想要解决这个问题,最简单的方法自然是 kill 掉进程,然后重启。

首先查看进程号:

ps aux | grep supervisord

然后 kill 即可。

但是这个方法并不优雅,如果想让新的配置文件生效,只需按照下面的步骤进行即可。

二、正确的解决方法

首先进入 supervisor 控制台:

supervisorctl

然后重新读取配置:

reread

更新配置:

update

开始所有配置:

start all

查看所有状态:

status

至此,解决了新的守护进程的生效问题。