基于nginx和uWSGI在Ubuntu系统上部署Django项目

1、 nginx
1.1 安装

sudo apt-get install nginx
1.2启动、停止和重启
sudo /etc/init.d/nginx start
sudo /etc/init.d/nginx stop
sudo /etc/init.d/nginx restart
或者
sudo service nginx start
sudo service nginx stop
sudo service nginx restart
2、 uWSGI安装
用python的pip安装最简单:
apt-get install python-dev #不安装这个,下面的安装可能会失败
pip install uwsgi
3、基于uWSGI和nginx部署Django
3.1 基本测试
3.1.1 测试uWSGI是否正常

在django项目的根目录下创建test.py文件,添加源码如下:
# test.py
def application(env, start_response):
    start_response(‘200 OK‘, [(‘Content-Type‘,‘text/html‘)])
    return ["Hello World"] # python2
    #return [b"Hello World"] # python3
然后,Run uWSGI:
uwsgi --http :8000 --wsgi-file test.py
参数含义:
    http :8000: 使用http协议,8000端口
    wsgi-file test.py: 加载指定文件 test.py
打开下面url,浏览器上应该显示hello world
http://example.com:8000
如果显示正确,说明下面3个环节是通畅的:
the web client <-> uWSGI <-> Python
3.1.2 测试Django项目是否正常
首先确保project本身是正常的:
python manage.py runserver 0.0.0.0:8000
如果没问题,使用uWSGI把project拉起来:
uwsgi --http :8000 --module mysite.wsgi
    module mysite.wsgi: 加载wsgi module
如果project能够正常被拉起,说明以下环节是通的:
the web client <-> uWSGI <-> Django
3.2 nginx的配置和测试
安装nginx完成后,如果能正常打开http://hostname,说明下面环节是通畅的:
the web client <-> the web server
3.2.1 增加nginx配置
    将uwsgi_params文件拷贝到项目文件夹下。uwsgi_params文件在/etc/nginx/目录下,也可以从这个页面下载
    在项目文件夹下创建文件mysite_nginx.conf,填入并修改下面内容:
# mysite_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 /path/to/your/mysite/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     /path/to/your/mysite/uwsgi_params; # the uwsgi_params file you installed
    }
}
这个configuration文件告诉nginx从文件系统中拉起media和static文件作为服务,同时相应django的request
在/etc/nginx/sites-enabled目录下创建本文件的连接,使nginx能够使用它:
sudo ln -s ~/path/to/your/mysite/mysite_nginx.conf /etc/nginx/sites-enabled/
3.2.2 部署static文件
在django的setting文件中,添加下面一行内容:
STATIC_ROOT = os.path.join(BASE_DIR, "static/")
然后运行:
python manage.py collectstatic
3.2.3 测试nginx
首先重启nginx服务:
sudo /etc/init.d/nginx restart
然后检查media文件是否已经正常拉起:
在目录/path/to/your/project/project/media directory下添加文件meida.png,然后访问http://example.com:8000/media/media.png ,成功后进行下一步测试。
3.2.4 nginx and uWSGI and test.py
执行下面代码测试能否让nginx在页面上显示hello, world
uwsgi --socket :8001 --wsgi-file test.py
访问http://example.com:8000 ,如果显示hello world,则下面环节是否通畅:
the web client <-> the web server <-> the socket <-> uWSGI <-> Python
4 、 用UNIX socket取代TCP port
对mysite_nginx.conf做如下修改:
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)
重启nginx,并在此运行uWSGI
uwsgi --socket mysite.sock --wsgi-file test.py
打开 http://example.com:8000/ ,看看是否成功
如果没有成功:
检查 nginx error log(/var/log/nginx/error.log)。如果错误如下:
connect() to unix:///path/to/your/mysite/mysite.sock failed (13: Permission
denied)
添加socket权限再次运行:
uwsgi --socket mysite.sock --wsgi-file test.py --chmod-socket=666 # (very permissive)
or
uwsgi --socket mysite.sock --wsgi-file test.py --chmod-socket=664 # (more sensible)
5、Running the Django application with uswgi and nginx(运行带有uswgi 和nginx 的 Django应用)
如果上面一切都显示正常,则下面命令可以拉起django application
uwsgi --socket mysite.sock --module mysite.wsgi --chmod-socket=664
5.1、 Configuring uWSGI to run with a .ini file(使用 .ini文件配置 uWSGI 来启动项目)
每次都运行上面命令运行django application实在麻烦,使用.ini文件能简化工作,方法如下:
在application目录下创建文件mysite_uwsgi.ini,填入并修改下面内容:
# mysite_uwsgi.ini file
[uwsgi]

# Django-related settings
# the base directory (full path)
chdir           = /path/to/your/project
# Django‘s wsgi file
module          = project.wsgi
# the virtualenv (full path)
home            = /path/to/virtualenv

# process-related settings
# master
master          = true
# maximum number of worker processes
processes       = 10
# the socket (use the full path to be safe
socket          = /path/to/your/project/mysite.sock
# ... with appropriate permissions - may be needed
# chmod-socket    = 664
# clear environment on exit
vacuum          = true
现在,只要执行以下命令,就能够拉起django application:
uwsgi --ini mysite_uwsgi.ini # the --ini option is used to specify a file
5.2、Make uWSGI startup when the system boots(在系统启动时让uWSGI自启动)
编辑文件/etc/rc.local, 添加下面内容到这行代码之前exit 0:
/usr/local/bin/uwsgi --socket /path/to/mysite.sock --module /path/to/mysite.wsgi --chmod-socket=666

6、数聚传媒选择使用nginx+uwsgi

数聚传媒技术采用nginx+uwsgi部署django项目就是看中了它的如下特性:
1.    支持高并发量;
2.    方便管理多进程,发挥多核的优势;
3.    提升性能,因为uwsgi协议比WSGI协议有优势;
4.    安全,客户端对Web服务器的访问需要先经过反向代理服务器。这样可以防止外部程序对Web服务器的直接攻击;
5.    负载均衡,反向代理服务器可以根据Web服务器的负载情况,动态地把HTTP请求交给不同的Web服务器来处理,前提是要有多个Web服务器;
6.    提升Web服务器的IO性能。一个HTTP请求的数据,从客户端传输给服务器,是需要时间的,例如N秒,如果直接传给Web服务器,Web服务器就需要让一个进程阻塞N秒,来接收IO,这样会降低Web服务器的性能。如果使用反向代理服务器,先让反向代理服务器接收完整个HTTP请求,再把请求发给Web服务器,就能提升Web服务器的性能。还有一些静态文件的请求,可以直接交给反向代理来处理,不需要经过Web服务器。

时间: 2024-08-06 15:57:38

基于nginx和uWSGI在Ubuntu系统上部署Django项目的相关文章

教你在裸机centos7系统中部署django项目

概要 本文用一台安装了centos7.5系统的裸奔的Linux机器(当然是虚拟机)详细讲解部署django项目的过程. 配置yum源 至于什么是yum源大家请自行百度,本人想用阿里云的yum源,因此需要在裸机上配置一下: 进入yum源的目录 cd /etc/yum.repos.d/ 查看yum源文件 ls -l 配置阿里云yum源 1.好习惯,备份yum源 mkdir repo_bak mv *.repo repo_bak/ 2.下载阿里云repo文件 wget http://mirrors.a

在PythonAnyWhere上部署Django项目

http://www.jianshu.com/p/91047e3a4ee9 将项目放到git上,然后将pathonanywhere上的ssh传到git上,没有的话先创建,然后从git上把项目拷贝到pathonanywhere的根目录下/home/xqnq2007下 1 创建虚拟环境, mkvirtualenv rango将各种包安装在虚拟环境中,这样会避免出现某些权限不足的问题 2 配置Virtualenv 将对应的文件路径写正确 创建web app成功后,在Web标签页面会出现你创建的web

django+uwsgi+nginx部署在ubuntu系统上

1. 安装之前的准备工作 修改项目下settings.py文件,将调试状态改为False DEBUG = False ALLOWED_HOSTS = ['*'] 能否正常启动项目:python manage.py runserver 2. 安装nginx1.8.1 从http://nginx.org/en/download.html下载 安装gcc g++的依赖库 sudo apt-get install build-essential sudo apt-get install libtool

Flask+Nginx+uWSGI在Ubuntu服务器上的配置

Flask+Nginx+uWSGI在Ubuntu服务器上的配置 Step1 安装系统环境 Ubuntu服务器选择是阿里云的ECS服务,ECS提供单独的内存\CPU\带宽\存储规格可以选择,并且提供合适的镜像可以安装.安装镜像后通过ssh进行远程管理,配置.配置的自由程度非常高,也适合进行远程的编程和调试,作为编程调试的服务器和测试服务器非常棒. 服务器的环境: * 确认系统版本 cat /proc/version Linux version 3.13.0-95-generic ([email p

Nginx: ubuntu系统上如何判断是否安装了Nginx?

问题描述:ubuntu系统上,如何查看是否安装了Nginx? 解决方法:输入命令行:ps -ef | grep nginx master process后面就是Nginx的安装目录. 延伸:1. 如何查看Nginx版本号? 使用命令:nginx -v   //显示Nginx版本号 nginx -V  // 显示Nginx版本号,编译器版本号,配置信息 2. master process:主进程 worker process:工作进程 参考:https://zhidao.baidu.com/que

在Ubuntu系统上搭建Hadoop 2.x(2.6.2)

官方的中文版的Hadoop快速入门教程已经是很老的版本了,新版的Hadoop目录结构发生了变化,因此一些配置文件的位置也略微调整了,例如新版的hadoop中找不到快速入门中提到的conf目录,另外,网上有很多教程也是关于老版本的.本教程主要是针对Hadoop 2.X版本,在Ubuntu系统上的搭建过程.如果要对各个步骤进行深入理解,还需要参考其他资料. 英文版快速入门:http://hadoop.apache.org/docs/r2.6.2/hadoop-project-dist/hadoop-

Ubuntu系统上SVN服务器的安装和配置

Ubuntu系统上SVN的安装和配置 1.安装 #sudo apt-get install subversion 2.创建版本库 #sudo mkdir /home/svn #sudo svnadmin create /home/svn/suc 3.进入版本库修改相关配置文件 #cd /home/svn/suc/ #dir conf db format hooks locks README.txt 我们主要关心的是conf和db文件,conf文件夹下是存放主配置文件和用户.权限位置,db文件夹是

部署Django项目Nginx + uwsgi

记录一下使用Nginx + uwsgi部署Django项目 关于域名和端口 在这个教程中,我们将假设你的域名为 example.com .用你自己的FQDN或者IP地址来代替. 从头到尾,我们将使用8000端口作为web服务器的公开端口,就像Django runserver默认的那样.当然,你可以使用任何你想要的端口,但是我已经选了这个,因此,它不会与web服务器可能已经选择的任何端口冲突. 基本的uWSGI安装和配置 把uWSGI安装到你的virtualenv中 pip install uws

使用Nginx+uWSGI部署Django项目

1.linux安装python3环境 参考链接:https://www.cnblogs.com/zzqit/p/10087680.html 2.安装uwsgi pip3 install uwsgi ln -s /usr/local/python3/bin/uwsgi /usr/local/bin/uwsgi #建立软链接 uwsgi --version #检查安装成功 3.基于uwsgi+django项目部署 django项目目录结构(orange_manage为app): uwsgi --ht