标签:inf href art string strong 监听 ade pre reg
根据官方文档使用--daemon
可让队列常驻运行。对应命令行执行php artisan queue:work --daemon
;
但是当前命令还是会因为使用Ctrl+C。将进程给关闭。如何常驻在后台执行?
官方文档还让你安装 supervisor 你为什么不安装呢?
用 supervisor 可以常驻后台,并且监控 php artisan queue:work --daemon
的运行
这样即使重启,都可以稳定的运行队列。
##后台运行队列监听
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 &
标签:inf href art string strong 监听 ade pre reg
原文地址:https://www.cnblogs.com/pxuan/p/12816774.html