laravel队列常驻运行问题 queue:
Posted pxuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了laravel队列常驻运行问题 queue:相关的知识,希望对你有一定的参考价值。
根据官方文档使用--daemon
可让队列常驻运行。对应命令行执行php artisan queue:work --daemon
;
但是当前命令还是会因为使用Ctrl+C。将进程给关闭。如何常驻在后台执行?
官方文档还让你安装 supervisor 你为什么不安装呢?
用 supervisor 可以常驻后台,并且监控 php artisan queue:work --daemon
的运行
这样即使重启,都可以稳定的运行队列。
方法: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:的主要内容,如果未能解决你的问题,请参考以下文章
Laravel 运行队列处理器 queue:work 与 queue:listen 区别及 Windows 终端命令问题