其他分享
首页 > 其他分享> > 安装gunicorn

安装gunicorn

作者:互联网

pip install gunicorn

查看命令行选项: 安装gunicorn成功后,通过命令行的方式可以查看gunicorn的使用信息。

$ gunicorn -h

直接运行

# 直接运行,默认启动的127.0.0.1::8000
$ gunicorn 运行文件名称:Flask程序实例名

指定进程和端口号: -w: 表示进程(worker)。 -b:表示绑定ip地址和端口号(bind)。--access-logfile:表示指定log文件的路径

$ gunicorn -w 4 -b 127.0.0.1:5000 --access-logfile log文件路径 运行文件名称:Flask程序实例名
# 例:gunicorn -w 4 -b 0.0.0.0:5000 --access-logfile ./logs/log health:app

作为守护进程后台运行

$ gunicorn -w 4 -b 127.0.0.1:5000 -D --access-logfile log文件路径 运行文件名称:Flask程序实例名
# 例:gunicorn -w 4 -b 0.0.0.0:5000 -D --access-logfile ./logs/log health:app

标签:5000,gunicorn,--,access,logfile,安装,log
来源: https://blog.csdn.net/qfzhaohan/article/details/121122152