方案: Nginx + uWsgi 提高 Django的并发性
1. uWsgi :
uWsgi是一个web服务器,实现了Wsgi协议、uwsgi协议、http协议等。
uWsgi的主要特点是:
超快的性能
低内存占用
多app管理
详尽的日志功能(可以用来分析app的性能和瓶颈)
高度可定制(内存大小限制,服务一定次数后重启等)
uWsgi服务器自己实现了基于uwsgi协议的server部分,我们只需要在uwsgi的配置文件中指定application的地址,uWsgi就 能直接和应用框架中的Wsgi application通信。
2. Nginx :
Nginx 是一个高性能的负载均衡HTTP和反向代理服务器,Nginx是一款轻量级的Web 服务器/反向代理服务器及电子邮件代理服务器。
特点是占有内存少,并发能力强。
结构与扩展:一个主进程和多个工作进程。工作进程是单线程的,且不需要特殊授权即可运行;
3. Nginx和uWsgi的关系:
Nginx相当于是服务器,负责接收请求
uwsgi是服务器和服务端应用程序的通信协议,规定了怎么把请求转发给应用程序和返回
2个基本概念:
服务器(接收请求),应用程序(处理请求并返回)
通信过程:
客户端发送一个http请求,被Nginx服务器接收,Nginx服务器将请求转发给uwsgi,uwsgi将请求转发给实现uwsgi
协议的应用程序(flask,gunicorn等等)
4. uWsgi的安装:
4.1: [root@crazy-acong ~]# pip3 install uwsgi
cd 进入到 django 的主目录
vi test-uwsgi.ini # 添加以下配置文件,按需修改即可:
[uwsgi]
# 对外提供 http 服务的端口
http = :8888
#用于和 Nginx 进行数据交互的端口
socket = 127.0.0.1:8899
# django 程序的主目录。
chdir = /project/django
# Django's wsgi file
wsgi-file = /project/django_test/django_test/wsgi.py
# 最大的工作进程数
processes = 4
#在每个进程中的最大线程数
threads = 2
# 通过该端口可以监控 uwsgi 的负载情况
stats = 127.0.0.1:9999
# 清理环境出口
vacuum = true
# 后台运行,并输出日志
daemonize = /var/log/uwsgi.log
4.3 通过 uwsgi 配置文件启动 django 程序
uwsgi test-uwsgi.ini # 在浏览器中 通过访问 http://ip:9000 可以看到发布的 django 程序
4.4. 查看uwsgi的启动进程状态
netstat -lnpt | grep uwsgi
4.4 . 安装Nginx :
apt-get install Nginx
在 django 的主目录下创建下面的 Nginx 配置文件,然后做软连接到 Nginx 的配置文件目录,或者直接在 Nginx 配置文件目录中添加该文件也可以
[root@crazy-acong django_test]# cat /data/django_test/django-Nginx.conf
# the upstream component Nginx needs to connect to
upstream django {
# server unix:///path/to/your/mysite/mysite.sock; # for a file socket
server 127.0.0.1:8001; # for a web port socket (we'll use this first)
}
# configuration of the server
server {
# the port your site will be served on
listen 8000;
# the domain name it will serve for
server_name .example.com; # substitute your machine's IP address or FQDN
charset utf-8;
# max upload size
client_max_body_size 75M; # adjust to taste
# Django media
location /media {
alias /path/to/your/mysite/media; # your Django project's media files - amend as required
}
location /static {
alias /data/django_test/static; # your Django project's static files - amend as required
}
# Finally, send all non-media requests to the Django server.
location / {
uwsgi_pass django;
include /data/django_test/uwsgi_params; # the uwsgi_params file you installed
}
}
5.2 重启Nginx 服务
[root@crazy-acong django_test]# Nginx -t
Nginx: the configuration file /data/application/Nginx-1.10.3/conf/Nginx.conf Syntax is ok
Nginx: configuration file /data/application/Nginx-1.10.3/conf/Nginx.conf test is successful
[root@crazy-acong django_test]# Nginx -s reload
[root@crazy-acong django_test]# netstat -lnpt | grep 8000
tcp 0 0 0.0.0.0:8000 0.0.0.0:* LISTEN 43492/Nginx
这个时候就可以通过 http://ip:8000 访问 django 程序了,不过目前还存在一个问题,访问 http://ip:8000/admin 发现静态文件貌似没读取到,需要通过下面的方法解决静态文件的问题
# 在 django 程序的 settings.py 文件中添加以下内容
STATIC_ROOT = os.path.join(BASE_DIR, "static_all")
# 然后通过执行该命令,将静态文件整合到一个目录中
[root@crazy-acong django_test]# python3 manage.py collectstatic
[root@crazy-acong django_test]# ll
total 40
drwxr-xr-x 3 Nginx games 4096 Mar 14 14:42 app01
-rw-r--r-- 1 root root 3072 Mar 14 14:51 db.sqlite3
-rw-r--r-- 1 root root 1026 Mar 14 15:18 django-Nginx.conf
drwxr-xr-x 3 Nginx games 4096 Mar 14 15:45 django_test
-rwxr-xr-x 1 Nginx games 809 Mar 14 14:37 manage.py
drwxr-xr-x 2 Nginx games 4096 Mar 14 14:42 static
drwxr-xr-x 3 root root 4096 Mar 14 15:47 static_all # 此时会发现多了一个该目录,所有 app 的静态文件都整合到这一个目录中了
drwxr-xr-x 2 Nginx games 4096 Mar 14 14:40 templates
-rw-r--r-- 1 root root 565 Mar 14 15:40 test-uwsgi.ini
-rw-r--r-- 1 root root 664 Mar 14 15:28 uwsgi_params
然后需要修改 Nginx 配置文件中 指向 django 静态目录的配置文件
[root@crazy-acong django_test]# cat /data/django_test/django-Nginx.conf
# the upstream component Nginx needs to connect to
upstream django {
# server unix:///path/to/your/mysite/mysite.sock; # for a file socket
server 127.0.0.1:8001; # for a web port socket (we'll use this first)
}
# configuration of the server
server {
# the port your site will be served on
listen 8000;
# the domain name it will serve for
server_name .example.com; # substitute your machine's IP address or FQDN
charset utf-8;
# max upload size
client_max_body_size 75M; # adjust to taste
# Django media
location /media {
alias /path/to/your/mysite/media; # your Django project's media files - amend as required
}
location /static {
# 需要修改的地方在这里
alias /data/django_test/static_all; # your Django project's static files - amend as required
}
# Finally, send all non-media requests to the Django server.
location / {
uwsgi_pass django;
include /data/django_test/uwsgi_params; # the uwsgi_params file you installed
}
}
最后重启 Nginx 服务即可
[root@crazy-acong django_test]# Nginx -t
Nginx: the configuration file /data/application/Nginx-1.10.3/conf/Nginx.conf Syntax is ok
Nginx: configuration file /data/application/Nginx-1.10.3/conf/Nginx.conf test is successful
[root@crazy-acong django_test]# Nginx -s reload
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。