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

laravel队列常驻运行问题 queue:

时间:2020-05-02 09:18:26      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:inf   href   art   string   strong   监听   ade   pre   reg   

根据官方文档使用--daemon可让队列常驻运行。对应命令行执行php artisan queue:work --daemon

但是当前命令还是会因为使用Ctrl+C。将进程给关闭。如何常驻在后台执行?

官方文档还让你安装 supervisor 你为什么不安装呢?

用 supervisor 可以常驻后台,并且监控 php artisan queue:work --daemon 的运行

这样即使重启,都可以稳定的运行队列。

安装教程:https://www.load-page.com/bas...

方法:2

##后台运行队列监听

nohup php artisan queue:listen >/dev/null 2>&1 & 
nohup php artisan queue:work --daemon >/dev/null 2>&1 & //不重新加载整个框架,而是直接 fire 动作
su apache -c -l "nohup php artisan queue:work --daemon >/dev/null 2>&1 &" //以apache用户运行
sudo -u apache -s nohupphp  artisan queue:listen --queue=wxmsg > /dev/null 2>&1 &

laravel队列常驻运行问题 queue:

标签:inf   href   art   string   strong   监听   ade   pre   reg   

原文地址:https://www.cnblogs.com/pxuan/p/12816774.html

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