laravel 队列与supervisor进程监控

栏目: PHP · 发布时间: 6年前

内容简介:文章目录已不推荐 无需重启1、启动

文章目录 [隐藏]

队列运行与使用

启动方式

queue:work

/usr/local/bin/php /code-path/artisan queue:work redis --queue=default,abc --sleep=3 --tries=3
 
--sleep 指定休眠时间
--tries 指定重试次数
--queue 指定队列名称
 
更新代码需要重启
/usr/local/bin/php /code-path/artisan queue:restart
 

queue:listen

已不推荐 无需重启

supervisor进程监控

安装supervisor

pip install supervisor
 
生成配置文件
echo_supervisord_conf > /etc/supervisord.conf
 
可能会报:need meld > 3.6.5 禁用meld即可
 
 
启动
supervisord -c /etc/supervisord.conf
 

配置supervisor

[program:queue]
process_name=%(program_name)s_%(process_num)02d
command=/usr/local/bin/php /code-path/artisan queue:work redis --queue=default,abc --sleep=3 --tries=3
autostart=true
autorestart=true
;user=forge
numprocs=3
redirect_stderr=true
stdout_logfile=/code-path/storage/logs/queue.log
 

supervisor常用命令

1、启动

supervisord -c /etc/supervisord.conf

2、管理

/usr/bin/supervisorctl -c /etc/supervisord.conf

status 查看当前状态
update 更新相关配置
 

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Developer's Guide to Social Programming

Developer's Guide to Social Programming

Mark D. Hawker / Addison-Wesley Professional / 2010-8-25 / USD 39.99

In The Developer's Guide to Social Programming, Mark Hawker shows developers how to build applications that integrate with the major social networking sites. Unlike competitive books that focus on a s......一起来看看 《Developer's Guide to Social Programming》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码