uwsgi+django 配置

uwsgi+django

  1. 建立新的虛擬環境,且解決crm的環境依賴html

  2. 在虛擬環境下安裝uwsgipython

    pip3 install uwsgi
  3. 學習uwsgi命令,如何啓動python應用
    啓動python web文件
    建立一個test.py寫入以下代碼nginx

    def application(env, start_response):
        start_response('200 OK', [('Content-Type','text/html')])
        return [b"Hello World"] # python3

    用uwsgi啓動一個python web文件web

    指定8000端口啓動 http服務django

    指定wsgi文件json

    uwsgi --http :8000   --wsgi-file  test.py
  4. 用uwsgi啓動django項目
    uwsgi --http :9000 --module Alibab_crm.wsgivim

    uwsgi加上熱加載命令
    uwsgi --http :8000 --module Alibab_crm.wsgi --py-autoreload=1服務器

    使用uwsgi配置文件去啓動項目app

    1. 手動建立uwsgi.ini 配置文件
      (alicrm) [root@s16ds Alibab_crm]# cat uwsgi.inisocket

      # mysite_uwsgi.ini file
      [uwsgi]
      # Django-related settings
      # the base directory (full path)
      #指定django的項目目錄,第一層
      chdir           = /opt/Alibab_crm
      # Django's wsgi file
      #找到django的wsgi文件
      #這裏須要寫項目的第二層目錄Alibab_crm
      module          = Alibab_crm.wsgi
      # the virtualenv (full path)
      #填寫虛擬環境的絕對路徑
      home            = /root/Envs/alicrm
      # process-related settings
      # master
      master          = true
      # maximum number of worker processes
      processes       = 5
      # the socket (use the full path to be safe
      #指定socket協議,運行django,只能與nginx結合時使用
      #指定socket協議,運行django,只能與nginx結合時使用
      #指定socket協議,運行django,只能與nginx結合時使用
      socket          = 0.0.0.0:8000
      #若是你沒用nginx,只想本身啓動一個http界面,用這個
      #http =  0.0.0.0:8000
      
      # ... with appropriate permissions - may be needed
      # chmod-socket    = 664
      # clear environment on exit
      vacuum          = true
    2. 經過配置文件啓動uwsgi

      uwsgi --ini uwsgi.ini
  5. 收集django crm的靜態文件

    編輯crm的settings.py配置文件
    寫入以下代碼

    # 定義django的靜態資源根目錄,便於用命令收集資源,存放的地兒
    STATIC_ROOT="/opt/crm_static"
    STATIC_URL = '/static/'
    STATICFILES_DIRS = [
        os.path.join(BASE_DIR, 'static')
    
    ]

    用命令收集靜態文件

    python3 manage.py collectstatic
  6. 配置nginx,反響代理django服務器,且解析靜態文件

    proxy_pass 僅僅是請求轉發的參數,與uwsgi結合,還有跟高級的協議參數

    修改nginx配置文件以下

    server {
     listen       80;
     server_name  s16chiji.com;
     location / {
         #root   /opt/s16chiji;
         #index  index.html;
     #使用uwsgi_pass 轉發基於uwsgi協議的一個請求
    
     uwsgi_pass 192.168.15.71:8000;
     include  /opt/nginx112/conf/uwsgi_params;
     }
     #配置一個url的入口,告訴django靜態文件在哪裏去找
     #當請求url是 s16chiji.com/static/的時候
     #就進行別名,nginx去/opt/crm_static下尋找js文件
     location /static {
     alias  /opt/crm_static/;
     }
        #經過這個參數,定義錯誤頁面的文件  ,當狀態碼是 404 400 401 時,返回40x.html頁面
         error_page  404 401 400 403              /40x.html;
     }
  7. 此時nginx結合uwsgi 已經完成

  8. 記住這裏推出虛擬環境,使用物理環境去運行

    配置supervisor工具,管理django後臺

  • 這個東西只能用python2去實現
  1. 下載supervisor

    easy_install supervisor
  2. 配置supervisor的配置文件,編寫django任務

    echo_supervisord_conf >  /etc/supervisor.conf
  3. 編寫運行django的任務

    vim /etc/supervisor.conf
    在最底行寫入以下代碼

    [program:s16alicrm]
    command=/root/Envs/alicrm/bin/uwsgi  --ini /opt/Alibab_crm/uwsgi.ini 
    autorestart=true
    stopasgroup=true
    killasgroup=true
  4. 啓動suopersivod這個程序

    啓動服務端
    supervisord -c /etc/supervisor.conf
    經過客戶端命令查看任務
    supervisorctl -c /etc/supervisor.conf
  5. 學習supervisor管理命令

    [root@s16ds alicrm]# supervisorctl -c /etc/supervisor.conf 
    s16alicrm                        RUNNING   pid 5293, uptime 0:03:03
    supervisor> stop all   #中止全部任務
    supervisor> start all  #啓動s全部任務
    supervisor> status s16alicrm
相關文章
相關標籤/搜索