最近在linux下用到了gunicorn,做下记录
1.gunicorn是一个python Wsgi http server。Gunicorn使用prefork master-worker模型(在gunicorn中,master被称为arbiter),能够与各种wsgi web框架协作,我项目里用gunicorn配合Flask。
2.安装
我用Anaconda在liunx搭建了一个python虚拟环境,我在虚拟环境安装gunicorn
conda install gunicorn
3.下面是supervisor管理gunicorn的子进程配置文件说明:
给需要管理的子进程(程序)编写一个配置文件,放在/etc/supervisor.d/目录下,以.ini作为扩展名(每个进程的配置文件都可以单独分拆也可以把相关的脚本放一起)。如任意定义一个和脚本相关的项目名称的选项组(/etc/supervisord.d/test.conf):
#项目名
[program:testSend]
#脚本目录
directory=/home/xh/opt/test/sansa/
#脚本执行命令
command=/home/xh/anaconda3/envs/xh/bin/gunicorn -b xx.xx.xx.xx:10086 run:app
#supervisor启动的时候是否随着同时启动,默认True
autostart=true
#当程序exit的时候,这个program不会自动重启,默认unexpected,设置子进程挂掉后自动重启的情况,有三个选项,false,unexpected和true。如果为false的时候,无论什
么情况下,都不会被重新启动,如果为unexpected,只有当进程的退出码不在下面的exitcodes里面定义的
autorestart=false
#这个选项是子进程启动多少秒之后,此时状态如果是running,则我们认为启动成功了。默认值为1
startsecs=1
#脚本运行的用户身份
user = xh
#日志输出
stderr_logfile=/tmp/blog_stderr.log
stdout_logfile=/tmp/blog_stdout.log
#把stderr重定向到stdout,默认 false
redirect_stderr = true
#stdout日志文件大小,默认 50MB
stdout_logfile_maxbytes = 20MB
#stdout日志文件备份数
stdout_logfile_backups = 20
4.配置完成以后,把supervisor服务启动起来,然后开启子进程配置配置的项目,详见:Supervisor-守护进程工具添加链接描述