最近因为项目部署需要使用django+nginx+gunicorn+supervisor,所以自己在服务器上做了简单的配置,为什么要使用gunicorn呢?(之前写过一篇uwsgi),因为公司需要。。。而supervisor则是用来控制项目的启动的,即使关闭ssh也可以继续在后台运行,而且启动关闭及其方便。
我知道这次的部署肯定也会遇到很多的坑,果然找了国内的很多教程,都最终以失败告终,最后是使用这篇文章的教程才部署成功的。十分感谢该作者。这里所做的只是简化这一部署的过程,让你轻松上手django+nginx+gunicorn+supervisor。
安装(这个过程不详细讲,因为没有必要,重点在后面)
sudo pip install gunicorn
sudo apt-get install nginx
sudo apt-get install supervisor
django
(假设django项目的名称为djangopro, 目录位于/home/ubuntu/djangopro)
python manage.py runserver 0.0.0.0:9998
然后在你的网站上输入ip:9998(localhost:9998也可以),看看django跑通没有,跑通后ctrl+c结束后继续
gunicorn
- 首先在你的django目录中注册一下gunicorn
INSTALLED_APPS =
(
...,
"gunicorn",
)
- 尝试使用gunicorn来运行django(端口修改了一下,避免缓存)
gunicorn ××djangopro.wsgi:application -b 0.0.0.0:9999 --reload
然后在你的网站上输入ip:9999 (localhost:9999 也可以),看看django+gunicorn跑通没有,跑通后ctrl+c结束后继续
- 创建一个脚本用于supervisor来控制gunicorn的运行(supervisor后面回讲)
vim gunicorn_start.sh
然后修改成你自己的配置并粘贴,需要修改的地方我会提到
#!/bin/bash
NAME="gunicorn_djangopro" ##定义一个名字,用来作为进程名
DIR=/home/ubuntu/djangopro ##你的项目路径
USER=ubuntu ##启动该项目使用的用户
GROUP=ubuntu ##启动该项目使用的用户的组
WORKERS=3
BIND=unix:/home/ubuntu/djangopro/djangopro/gunicorn.sock ##不需要你手工创建该文件!!!这是自动创建的用来通信的套接字
DJANGO_SETTINGS_MODULE=djangopro.settings ##改成你的项目
DJANGO_WSGI_MODULE=djangopro.wsgi ##改成你的项目
LOG_LEVEL=error
cd $DIR
export DJANGO_SETTINGS_MODULE=$DJANGO_SETTINGS_MODULE
export PYTHONPATH=$DIR:$PYTHONPATH
##下面的/usr/local/bin/gunicorn 改成你自己安装后的gunicorn的路径,可以使用whereis gunicorn 来找到
exec /usr/local/bin/gunicorn ${DJANGO_WSGI_MODULE}:application \
--name $NAME \
--workers $WORKERS \
--user=$USER \
--group=$GROUP \
--bind=$BIND \
--log-level=$LOG_LEVEL \
--log-file=/usr/local/bin/gunicorn.log # 需要事先创建log文件
为该文件增加执行权限并复制到/bin下面
chmod u+x gunicorn_start.sh
sudo cp gunicorn_start.sh /bin/gunicorn_start.sh
supervisor
创建一个你的项目的supervisor配置文件,文件名称可以自定义(但要以.conf结尾因为supervisor找的是.conf结尾的配置文件),这里为djangopro_supervisor.conf
[program:djangopro] ##修改成你的项目名称
command=/bin/gunicorn_start.sh
environment=DJANGO_ENV="prod"
user=ubuntu ##修改成你的用户
autostart=true
autorestart=true
redirect_stderr=True
做一个软链接到supervisor的配置文件目录下
sudo ln -s /your/path/djangopro_supervisor.conf /etc/supervisor/conf.d/ ##大哥记得最好用绝对路径哈~
使用supervisor启动你的gunicorn
sudo supervisorctl reread
sudo supervisorctl update
sudo supervisorctl status djangopro
看到出现类似,说明已经在后台运行了
djangopro-train RUNNING pid 23381, uptime 0:03:15
然而!到目前为止,你会发现并没有绑定什么端口啊,那运行有个鸟用?!!对的,你现在访问也访问不了。那是因为目前我们只是跑通了supervisor和gunicorn,但是我们的web服务器还没起来呢----也就是nginx
nginx
vim djangopro_nginx.conf
在配置文件中输入一下,并修改成你自己的,具体我会提到
upstream djangopro{
server unix:/home/ubuntu/djangopro/djangopro/gunicorn.sock fail_timeout=0; ##请把这里修改成你的项目的路径,其中gunicorn.sock必须和之前处于同一个目录
}
server {
listen 9998; ##这里我监听对的是9998端口
# add here the ip address of your server
# or a domain pointing to that ip (like example.com or www.example.com)
server_name 大哥你的ip啊; ##!!!!!server_name后面修改成你的ip,不需要加端口,例如你的ip是8.8.8.8,那就8.8.8.8即可
keepalive_timeout 5;
client_max_body_size 4G;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
location /static/ {
alias /home/ubuntu/djangopro/; ##配置你的项目的静态文件目录,这个很重要,你用nginx不就是为了托管你的静态文件吗?
}
# checks for static file, if not found proxy to app
location / {
try_files $uri @proxy_to_app;
}
location @proxy_to_app {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://djangopro; ##跟上面的upstream后面一致
}
}
接下来重点!你可以尝试下面的软链接,但我亲测不行
sudo ln -s /your/path/djangopro_nginx.conf /etc/nginx/sites-enabled/
重启一下nginx和supervisor
sudo service nginx restart
sudo supervisor restart all
打开你的网站ip:9998,如果正常访问,那么恭喜你已经部署成功了,如果出现连接被拒绝,那你就差一点点了,删除刚才/etc/nginx/sites-enabled/下面那个软链接,改成
sudo cp /your/path/djangopro_nginx.conf /etc/nginx/sites-enabled/
重启一下nginx和supervisor
sudo service nginx restart
sudo supervisor restart all
如果你发现访问成功,麻烦你点个赞呗,让我也为你高兴一下!
如果还未成功,你可以看看/var/log/nginx/error.log日志文件,看看出错日志。