美文网首页
python web 部署:nginx + gunicorn +

python web 部署:nginx + gunicorn +

作者: misspass | 来源:发表于2020-02-21 10:16 被阅读0次

    部署方式为:
    nginx + gunicorn + flask ++ supervisor

    创建一个项目

    mkdir api-python
    

    创建 python 虚拟环境

    virtualenv 可以说是 python 的一个大杀器。用来在一个系统中创建不同的 python 隔离环境。相互之间还不会影响,使用简单到令人发指。(我的工作路径是 /www/api-python)

    mkdir api-python
    cd api-python
    virtualenv venv
    

    创建了 venv 环境之后,激活就可以了

    source venv/bin/activate
    #退出虚拟环境
    deactivate
    

    安装 python web 框架 ---flask

    flask 是一个 python web micro framework。简洁高效,使用也很简单。flask 依赖两个库 werkzeug 和 jinjia2。采用 pip 方式安装即可。

    pip install flask
    

    测试我们的 flask 安装是否成功,并使用 flask 写一个简单的 web 服务。

    vim myapp.py
    
    from flask import Flask
    app = Flask(__name__)
    @app.route('/')
    def index():
        return 'hello world'
    if __name__ == '__main__':
        app.debug = True
        app.run()
    启动 flask
    
    python myapp.py
    

    此时,用浏览器访问 http://127.0.0.1:5000 就能看到网页显示 hello world。

    使用 gunicorn 部署 python web

    现在我们使用 flask 自带的服务器,完成了 web 服务的启动。生产环境下,flask 自带的 服务器,无法满足性能要求。我们这里采用 gunicorn 做 wsgi容器,用来部署 python。

    安装 gunicorn

     pip install gunicorn
    

    pip 是一个重要的工具,python 用来管理包。还有一个最佳生产就是每次使用 pip 安装的库,都写入一个 requirement 文件里面,既能知道自己安装了什么库,也方便别人部署时,安装相应的库。

     pip freeze > requirements.txt
    

    以后每次 pip 安装了新的库的时候,都需freeze 一次。

    当我们安装好 gunicorn 之后,需要用 gunicorn 启动 flask,注意 flask 里面的name里面的代码启动了 app.run(),这个含义是用 flask 自带的服务器启动 app。这里我们使用了 gunicorn,myapp.py 就等同于一个库文件,被 gunicorn 调用。

     gunicron -w4 -b0.0.0.0:8085 myapp:app
    

    此时,我们需要用 8000 的端口进行访问,原先的5000并没有启用。其中 gunicorn 的部署中,,-w 表示开启多少个 worker,-b 表示 gunicorn 开发的访问地址。

    想要结束 gunicorn 只需执行 pkill gunicorn,有时候还的 ps 找到 pid 进程号才能 kill。可是这对于一个开发来说,太过于繁琐,因此出现了另外一个神器---supervisor,一个专门用来管理进程的工具,还可以管理系统的工具进程。

    安装 supervisor

    pip install supervisor
    echo_supervisord_conf > supervisor.conf   # 生成 supervisor 默认配置文件
    vim supervisor.conf                       # 修改 supervisor 配置文件,添加 gunicorn 进程管理
    

    在myapp supervisor.conf 配置文件底部添加
    别忘了:mkdir /www/api-python/log

    [program:myapp]
    command=/www/api-python/venv/bin/gunicorn -w4 -b0.0.0.0:8085 myapp:app    ; supervisor启动命令
    directory=/www/api-python                                          ; 项目的文件夹路径
    startsecs=0                                                                  ; 启动时间
    stopwaitsecs=0                                                            ; 终止等待时间
    autostart=false                                                             ; 是否自动启动
    autorestart=false                                                         ; 是否自动重启
    stdout_logfile=/www/api-python/log/gunicorn.log                           ; log 日志
    stderr_logfile=/www/api-python/log/gunicorn.err                           ; 错误日志
    
    

    supervisor的基本使用命令

    supervisord -c supervisor.conf                             通过配置文件启动supervisor
    supervisorctl -c supervisor.conf status                    察看supervisor的状态
    supervisorctl -c supervisor.conf reload                    重新载入 配置文件
    supervisorctl -c supervisor.conf start [all]|[appname]     启动指定/所有 supervisor管理的程序进程
    supervisorctl -c supervisor.conf stop [all]|[appname]      关闭指定/所有 supervisor管理的程序进程
    

    supervisor 还有一个web的管理界面,可以激活。更改下配置

    [inet_http_server]         ; inet (TCP) server disabled by default
    port=127.0.0.1:9001        ; (ip_address:port specifier, *:port for all iface)
    username=user              ; (default is no username (open server))
    password=123               ; (default is no password (open server))
    
    [supervisorctl]
    serverurl=unix:///tmp/supervisor.sock ; use a unix:// URL  for a unix socket
    serverurl=http://127.0.0.1:9001 ; use an http:// url to specify an inet socket
    username=user              ; should be same as http_username if set
    password=123                ; should be same as http_password if set
    ;prompt=mysupervisor         ; cmd line prompt (default "supervisor")
    ;history_file=~/.sc_history  ; use readline history if available
    现在可以使用 supervsior 启动 gunicorn啦。运行命令 supervisord -c supervisor.conf
    

    访问 http://127.0.0.1:9001 可以得到 supervisor的web管理界面,访问 http://127.0.0.1:2170 可以看见gunciron 启动的返回的 hello world

    部署 Nginx

    nginx 是一个高性能的 HTTP 和 反向代理服务器,在高并发方面表现非常不错。

    安装 nginx

    yum install nginx
    

    nginx 安装完后,我们可以通过以下命令控制 nginx 的开启和关闭

    sudo /etc/init.d/nginx restart // 重启
    sudo /etc/init.d/nginx start 开启
    sudo /etc/init.d/nginx stop 关闭
    

    配置 nginx

    cd /etc/nginx/sites-available/default
    cd /etc/nginx/sites-enabled/default
    

    这是 nginx 的具体应用的配置文件,便于管理。修改默认的 default 文件

    server {
      #侦听80端口
        listen 80;
    #定义使用www.xx.com访问
        server_name www.app.com; // 或则是地址(http://118.89.235.150/)
        client_max_body_size 10M;
     
       #设定本虚拟主机的访问日志
        access_log logs/app.log main;
     
      #默认请求
        location / {
            #请求转向本机ip:8085
            proxy_pass http://127.0.0.1:8085;
            proxy_redirect off;
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        }
        #配置静态文件转发
        location ~.*(js|css|png|gif|jpg|mp3|ogg)$ {
            root /www/api-python/temp/data/app/medias/;
        }
        #配置静态页面转发
        location ~.*(html)$ {
            root /www/api-python/temp/data/app/app_static_pages/;
        }
    }
    

    相关文章

      网友评论

          本文标题:python web 部署:nginx + gunicorn +

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