Rumah > Artikel > pembangunan bahagian belakang > 在centos7下laravel5.6安装使用supervisor的方法
这篇文章主要介绍了关于在centos7下laravel5.6安装使用supervisor方法的,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下
centos7 安装supervisor yum install python-setuptools easy_install supervisor cd /etc/ mkdir supervisord.d echo_supervisord_conf > supervisord.conf vim /etc/supervisord.conf #加入以下配置信息 [include] files = /etc/supervisord.d/*.conf #创建文件 [program:laravel-worker] process_name=%(program_name)s_%(process_num)02dcommand=/usr/local/php7.1/bin/php /home/wwwroot/XXX/artisan queue:work redis --queue=emailautostart=trueautorestart=true #注意运行的用户,可能会造成用户无权限写入日志,报错,退出进程 user=root #运行几个进程 numprocs=8redirect_stderr=true #日志记入地址 stdout_logfile=/home/wwwlogs/laravel-work.log #关闭 /usr/bin/supervisorctl stop all #先关闭supervisor启动脚本,之后再关闭supervisord服务 ps ax | grep supervisor kill pid #启动 supervisord -c /etc/supervisord.conf #查看进程ps ax | grep supervisor ps ax | grep artisan
以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!
相关推荐:
laravel5.6与thinkphp3.2使用redis共享session的方案
Atas ialah kandungan terperinci 在centos7下laravel5.6安装使用supervisor的方法. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!