码迷,mamicode.com
首页 > 其他好文 > 详细

使用Supervisor来管理你的Laravel队列

时间:2018-05-27 20:21:28      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:配置   ocs   com   directory   内容   nbsp   logfile   stderr   cto   

第一步安装Supervisor

第二步设置配置文件 路劲etc/supervisor/conf.d

新建一个 conf文件  fenxi.conf

文件内容如下

[program:waaQueue]
command = php artisan queue:work --daemon
directory = /var/www/html/fenxi
process_name = %(program_name)s_%(process_num)s
numprocs = 1
autostart = true
autorestart = true
stdout_logfile = /var/www/html/fenxi/storage/logs/supervisor_waaQueue.log
stdout_logfile_maxbytes = 10MB
stderr_logfile =/var/www/html/fenxi/storage/logs/supervisor_wqqQueue.log
stderr_logfile_maxbytes = 10MB

 

重启 

supervisorctl restart

重新加载配置文件

supervisorctl reread

使用Supervisor来管理你的Laravel队列

标签:配置   ocs   com   directory   内容   nbsp   logfile   stderr   cto   

原文地址:https://www.cnblogs.com/hui413027075/p/9096994.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!