美文网首页
nginx+uwsgi+django简单部署过程记录

nginx+uwsgi+django简单部署过程记录

作者: 千木为城 | 来源:发表于2016-12-21 17:13 被阅读0次

其实之前就部署过一次了,但是当时记录的断断续续的,导致前两天再次部署的时候简直被坑哭,所以在这里记录一下。

说明:

django版本:1.8,系统版本:centos6.5, Python版本:3.5

首先需要安装libxml相关包,一行命令简单搞定

yum install libxml*

1、nginx安装

nginx下载可以去官网自己找,我下载的是nginx-1.10.2.tar.gz,安装路径是/usr/local/nginx

tar -zxvf nginx-1.10.2.tar.gz

cd nginx-1.10.2

./configure --prexfix=/usr/local/nginx

make&&make install

启动nginx

/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

-c后面跟的是配置文件的路径,不跟的话有时候会有些莫名其妙的提示,5555。。。启动之后在浏览器访问http://ip:80,可以看到nginx的欢迎页面,就没啥问题了<br>

2、安装uwsgi

下载安装django,uwsgi就没啥好说的了,直接pip

pip3 install django

pip3 install uwsgi

安装之后需要说下,很多网文说pip install之后直接就可以使用uwsgi命令了,实际我用的时候并不是,需要自己去uwsgi所在目录

找然后做一个软链接即可。我的python编译安装在/usr/local/python3目录下,所以是这样的

ln -s /usr/local/python3/bin/uwsgi /usr/bin/uwsgi

然后就可以直接使用uwsgi命令了。

创建一个测试文件 test.py

def application(env,start_response):

start_response('200 OK',[('Content-Type','text/html')])

return [b"helloWord"]

然后测试uwsgi

uwsgi --http :8000 --wsgi-file test.py

注意http后面需要有空格,命令执行没问题之后可以通过浏览器访问http://ip:8000,页面输出helloWord,就没有问题了。这里关于test.py,说明一下,如果是python2.x,那么直接

return 'helloWord'

就可以了,如果是python3.x,必须

return b'helloWord'

才可以,不然会报错,报的啥我忘记了,大意就是需要返回buffer啥的。<br>

3、Django创建项目

Django安装好之后就可以使用django-admin命令了,创建一个测试项目

cd /home/myself/projects/

django-admin.py startproject testnginx

为了把静态文件交给nginx处理,需要修改一下testnginx项目的settings.py配置,添加STATIC_ROOT

vim /home/myself/projects/testnginx/testnginx/settings.py

STATIC_URL = '/static/'

STATIC_ROOT = os.path.join(BASE_DIR, 'collectedstatic')

修改完后在项目目录/home/myself/projects/testnginx下执行

python manage.py collectstatic

就会看到所有的静态文件,css,js,img文件都被自动汇总到/home/myself/projects/testnginx/collectedstatic目录下了<br>

4、nginx配置准备工作完成,可以配置nginx了,nginx的配置文件在nginx安装目录下,上面说过,我的nginx编译安装在/usr/local/nginx目录,所以配置文件就是/usr/local/nginx/conf/nginx.conf,打开这个文件,找到server{****},修改成如下

server {

listen      80;

server_name  localhost;

charset utf-8;

client_max_body_size 75M;

#charset koi8-r;

#access_log  logs/host.access.log  main;

access_log /root/logs/nginx/access.log;

error_log /root/logs/nginx/error.log;

location / {

root  /home/myself/projects/testnginx;

uwsgi_pass 127.0.0.1:8000;

include uwsgi_params;

}

location /static/ {

alias /home/myself/projects/testnginx/collectedstatic/;

}

#error_page  404              /404.html;

# redirect server error pages to the static page /50x.html

#

error_page  500 502 503 504  /50x.html;

location = /50x.html {

root  html;

}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80

#

#location ~ \.php$ {

#    proxy_pass  http://127.0.0.1;

#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000

#

#location ~ \.php$ {

#    root          html;

#    fastcgi_pass  127.0.0.1:9000;

#    fastcgi_index  index.php;

#    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;

#    include        fastcgi_params;

#}

# deny access to .htaccess files, if Apache's document root

# concurs with nginx's one

#

#location ~ /\.ht {

#    deny  all;

#}

}

location /下root是项目根路径,uwsgi_pass配置的是uwsgi启动的端口,需要添加include uwsgi_params,这个uwsgi_params

文件应该是在nginx.conf文件的同级目录的,如果没有,需要自行安装一个。这里有一个坑了我的点,有好多文章配置location /static/的时候,说这个是location /static ,个人表示不带后面的斜杠的话,nginx是找不到静态文件的。。。。,记得写成

location /static/

配置完之后可以测试一下,使用-t命令

/usr/local/nginx/sbin/nginx -t

5、nginx+uwsgi都没问题了就可以把uwsgi和nginx串起来了,上面测试uwsgi是通过命令行的,最好写成配置文件,uwsgi可以有xml、ini等格式的配置文件,这里用ini格式的,在/home/myself/projects/ 目录下创建一个uwsgi.ini文件,内容是

[uwsgi]

chdir = /home/myself/projects/testnginx

module = testnginx.wsgi

master = true

processes = 10

socket = :8000

vacuum = true

daemonize = /home/myself/logs/uwsgi.log

chdri是项目目录,module这里字节projectname.wsgi就可以了,不要写django项目里的那个wsgi.py的路径,daemonize是log日志的路径,还有socket这里,一些文章的配置是http,这里建议socket,第一避免绕过nginx直接访问uwsgi,第二不会出现那个什么数据块太大的报错。配置文件完成后通过-i命令启动即可

uwsgi -i /home/myself/projects/uwsgi.ini

启动uwsgi之后启动nginx

/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

如果都是按照上面的步骤来的,在我的机器上就完事儿了,在浏览器输入http://ip:80,可以看到页面不是nginx欢迎页面了,是django的欢迎页面,就表示没毛病了。最后为了方便启停uwsgi,nginx(毕竟自己测试经常需要启停),写了一个智障的shell小脚本hanlernginx.sh,也记录一下

if [ -z "$1" ]

then

echo "please raw start/stop";

exit 0;

elif [ $1 = "start" ]

then

/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf;

echo "nginx start done!";

uwsgi -i /home/myself/projects/uwsgi.ini;

echo "uwsgi start done!";

elif [ $1 = "stop" ]

then

ps -ef|grep uwsgi|grep -v grep|awk '{print $2}'|while read pid

do

kill -9 $pid;

done

echo "uwsgi stop done!";

/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf -s stop;

echo "nginx stop done!";

fi

启停命令

./hanlernginx.sh stop

./hanlernginx.sh start

都是自己测试时候创建的,直接在root下就干了,不涉及用户权限啥的了,可能还有点漏掉的东西,后续想起来再补吧,汗。。。。

相关文章

网友评论

      本文标题:nginx+uwsgi+django简单部署过程记录

      本文链接:https://www.haomeiwen.com/subject/dhaxmttx.html