nginx+uWSGI+django+virtualenv+supervisor发布web服务器
2021-03-20 04:27
1.单机启动django项目,性能低,默认使用wsgiref模块,性能低的wsgi协议python3 manager.py runserver
0.0.0.0:8000 > wsgiref模块中 2.高并发启动django,django是没有这个功能的,而uWSGI模块,遵循uwsgi协议,支持多进程处理django请求uwsgi 通过他,启动你的django,而不再是python3 manager.py runserver
0.0.0.0:80003.公司中一般用 nginx + uwsgi + django + virtualenv + supervisord(进程管理工具)
搭建笔记:
1.确定依赖组件是否安装
yum install zlib-devel bzip2-devel pcre-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-develnginx 正向代理,反向代理的概念
用户阿段,去访问mycrm.com:80 ,他想直接从80端口,找到hello视图,也就是mycrm.com:80/hello
实现手段就是,阿段去访问 mycrm.com:80 这个nginx服务,并且让nginx,把hello这个请求,丢给后端的 uwsgi+django程序处理1.基础环境准备好
yum groupinstall "Development tools"
yum install zlib-devel bzip2-devel pcre-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel2.准备好python3环境
3.准备好virtualenv
4.安装uWSGI
1.激活虚拟环境
source /opt/all_venv/venv2/bin/activate2.安装uWSGI
(venv2) [root@s13linux ~ 05:18:21]$pip3 install uwsgi3.检查uwsgi版本
(venv) [root@slave 192.168.11.64 /opt]$uwsgi --version
2.0.17.1检查uwsgi python版本
uwsgi --python-version
4.运行一个简单的uwsgi服务器
1.创建一个test.py文件,写入内容
def application(env, start_response):
start_response(‘200 OK‘, [(‘Content-Type‘,‘text/html‘)])
return [b"Hello World"] # python32.然后用uwsgi命令启动
uwsgi --http :8000 --wsgi-file test.py
参数解释
http :8000: 使用http协议,端口8000
wsgi-file test.py: 加载指定的文件,test.py5.用uwsgi运行你的django项目(测试使用)
1.准备好mysite,自己写好MTV视图函数 /hello先确保你在项目文件夹下,例如/opt/mysite/底下
uwsgi --http :8088 --module mysite.wsgi --py-autoreload=1
参数解析
--http 启动在8088端口,--module 指定项目文件夹路径 --py-autoreload是热加载程序6.配置nginx反向代理uwsgi+django!!!!(此步重要!!!)
1.首先kill杀掉nginx进程
2.配置nginx.conf,通过此步才能生效!!
填入重要两个参数,根据自己目录结构配置,uwsgi_pass通过这个参数,nginx才能转发请求给后端0.0.0.0:9000的应用
include /opt/nginx112/conf/uwsgi_params;
uwsgi_pass 0.0.0.0:9000;
--------------------------分割线--------------------------------------------------------
server {
listen 80;
server_name mycrm.com;
location / {
include /opt/nginx112/conf/uwsgi_params;
uwsgi_pass 0.0.0.0:9000;
root html;
index index.html index.htm;deny 10.0.0.1;
}
配置nginx.conf之后,启动nginx服务,等待配置启动uwsgi+django
7.配置supervisor进程管理工具
1.通过python2的包管理工具easy_install安装
yum install python-setuptools
easy_install supervisor2.通过命令生成supervisor的配支文件
echo_supervisord_conf > /etc/supervisord.conf3.写入/etc/supervisord.conf配置信息(参数根据自己环境填写)
[program:my_crm]
command=/opt/all_venv/venv2/bin/uwsgi --uwsgi 0.0.0.0:9000 --chdir=/opt/s13crm --home=/opt/all_venv/venv2/ --module=s13crm.wsgi
directory=/opt/s13crm
startsecs=0
stopwaitsecs=0
autostart=true
autorestart=true8.启动supervi服务,(同时启动uwsgi+django服务)
最后启动supervisor,完成uWSGI启动django,nginx反向代理
supervisord -c /etc/supervisord.conf #启动supervisor
supervisorctl -c /etxc/supervisord.conf restart my #重启my项目
supervisorctl -c /etc/supervisord.conf [start|stop|restart] [program-name|all]9.此时访问网站mycrm.com ,查看是否可以通过80端口,访问到django应用,完成项目发布。
由于nginx的高并发性能,配合uwsgi的多进程性能,可以达到一个线上的django应用发布!!!谢谢大家!
内容博客地址:
https://www.cnblogs.com/pyyu/p/9481344.html
上一篇:雅虎网站性能优化的34条军规!
下一篇:AcWing 392. 会合
文章标题:nginx+uWSGI+django+virtualenv+supervisor发布web服务器
文章链接:http://soscw.com/index.php/essay/66552.html