91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Gunicorn運行與配置的示例分析

發布時間:2021-08-20 14:18:43 來源:億速云 閱讀:174 作者:小新 欄目:服務器

這篇文章主要為大家展示了“Gunicorn運行與配置的示例分析”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“Gunicorn運行與配置的示例分析”這篇文章吧。

Gunicorn“綠色獨角獸”是一個被廣泛使用的高性能的Python WSGI UNIX HTTP服務器,移植自Ruby的獨角獸(Unicorn )項目,使用pre-fork worker模式,具有使用非常簡單,輕量級的資源消耗,以及高性能等特點。

安裝gunicorn:

$ sudo apt-get update
$ sudo apt-get install gunicorn

運行gunicorn:

$ gunicorn [OPTIONS] 模塊名:變量名

模塊名是python文件名,可以是完整的路徑+python文件名;變量名是python文件中可調用的WSGI(Web Server Gateway ).

示例:

# filename:test.py
def app(environ, start_response):
"""Simplest possible application object"""
data = 'Hello, World!\n'
status = '200 OK'
response_headers = [
('Content-type','text/plain'),
('Content-Length', str(len(data)))
]
start_response(status, response_headers)
return iter([data])

運行app:

$ gunicorn --workers=2 test:app

常用配置參數:

-c CONFIG, --config=CONFIG

指定一個配置文件(py文件).

-b BIND, --bind=BIND

與指定socket進行綁定.

-D, --daemon

以守護進程形式來運行Gunicorn進程,其實就是將這個服務放到后臺去運行。

-w WORKERS, --workers=WORKERS

工作進程的數量。上邊提到gunicorn是一個pre-fork worker模式,就是指gunicorn啟動的時候,在主進程中會預先fork出指定數量的worker進程在處理請求時,gunicorn依靠操作系統來提供負載均衡,通常推薦的worker數量是:(2 x $num_cores) + 1

-k WORKERCLASS, --worker-class=WORKERCLASS

工作進程類型. 包括 sync(默認), eventlet, gevent, or tornado, gthread, gaiohttp.

--backlog INT

最大掛起的連接數.

--chdir

切換到指定的工作目錄.

--log-level LEVEL

輸出error log的顆粒度,有效的LEVEL有:

debug
info
warning
error
critical
--access-logfile FILE

確認要寫入Access log的文件FILE. '-' 表示輸出到標準輸出.

--error-logfile FILE, --log-file FILE

確認要寫入Error log的文件FILE. '-' 表示輸出到標準錯誤輸出.

gunicorn配置

Gunicorn從三個不同地方獲取配置:

框架設置(通常只影響到Paster應用)

配置文件(python文件):配置文件中的配置會覆蓋框架的設置。

命令行

框架設置只跟Paster(一個Web框架)有關,不討論;命令行配置如上部分所示;現在我們看下怎么用配置文件配置gunicorn:

配置文件必須是一個python文件,只是將命令行中的參數寫進py文件中而已,如果需要設置哪個參數,則在py文件中為該參數賦值即可。例如:

# example.py
bind = "127.0.0.1:8000"
workers = 2

運行gunicorn:

$ gunicorn -c example.py test:app

等同于:

$ gunicorn -w 2 -b 127.0.0.1:8000 test:app

當然,配置文件還能實現更復雜的配置:

# gunicorn.py
import logging
import logging.handlers
from logging.handlers import WatchedFileHandler
import os
import multiprocessing
bind = '127.0.0.1:8000'   #綁定ip和端口號
backlog = 512        #監聽隊列
chdir = '/home/test/server/bin' #gunicorn要切換到的目的工作目錄
timeout = 30   #超時
worker_class = 'gevent' #使用gevent模式,還可以使用sync 模式,默認的是sync模式
workers = multiprocessing.cpu_count() * 2 + 1  #進程數
threads = 2 #指定每個進程開啟的線程數
loglevel = 'info' #日志級別,這個日志級別指的是錯誤日志的級別,而訪問日志的級別無法設置
access_log_format = '%(t)s %(p)s %(h)s "%(r)s" %(s)s %(L)s %(b)s %(f)s" "%(a)s"'  #設置gunicorn訪問日志格式,錯誤日志無法設置
"""
其每個選項的含義如下:
h     remote address
l     '-'
u     currently '-', may be user name in future releases
t     date of the request
r     status line (e.g. ``GET / HTTP/1.1``)
s     status
b     response length or '-'
f     referer
a     user agent
T     request time in seconds
D     request time in microseconds
L     request time in decimal seconds
p     process ID
"""
accesslog = "/home/test/server/log/gunicorn_access.log"   #訪問日志文件
errorlog = "/home/test/server/log/gunicorn_error.log"    #錯誤日志文件

以上是“Gunicorn運行與配置的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

本溪| 廉江市| 临江市| 洛川县| 拜泉县| 苏尼特右旗| 呈贡县| 从化市| 新邵县| 乐平市| 介休市| 色达县| 湘潭县| 交口县| 南宁市| 孝义市| 蓝山县| 博乐市| 仙居县| 富民县| 大同市| 峡江县| 炉霍县| 澎湖县| 齐齐哈尔市| 北碚区| 闻喜县| 黎城县| 邢台县| 五峰| 敦煌市| 库车县| 四平市| 宝清县| 镇江市| 九台市| 东乡| 安西县| 福海县| 岳池县| 阿图什市|