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

溫馨提示×

溫馨提示×

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

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

如何在python中使用Gunicorn服務器

發布時間:2021-03-24 16:20:53 來源:億速云 閱讀:257 作者:Leah 欄目:開發技術

如何在python中使用Gunicorn服務器?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

1. 簡介

Gunicorn(Green Unicorn)是給Unix用的WSGI HTTP 服務器,它與不同的web框架是非常兼容的、易安裝、輕、速度快。

如何在python中使用Gunicorn服務器

2. 示例代碼1

def app(environ, start_response):
  data = b"Hello World\n"
  start_response("200 OK", [
    ("Content-Type", "test/plain"),
    ("Content-Length", str(len(data)))
  ])
  return iter([data])

啟動

gunicorn -w 4 myapp:app

起來后顯示

[2016-12-12 00:20:12 +0000] [11755] [INFO] Starting gunicorn 19.6.0
[2016-12-12 00:20:12 +0000] [11755] [INFO] Listening at: http://127.0.0.1:8000 (11755)
[2016-12-12 00:20:12 +0000] [11755] [INFO] Using worker: sync
[2016-12-12 00:20:12 +0000] [11760] [INFO] Booting worker with pid: 11760
[2016-12-12 00:20:12 +0000] [11761] [INFO] Booting worker with pid: 11761
[2016-12-12 00:20:12 +0000] [11762] [INFO] Booting worker with pid: 11762
[2016-12-12 00:20:12 +0000] [11763] [INFO] Booting worker with pid: 11763

此時,調用http://127.0.0.1:8000

$curl http://127.0.0.1:8000
Hello World

參數說明

-w 處理HTTP請求的worker進程數,以下兩種啟動方式等價

gunicorn -w 4 myapp:app
gunicorn --workers=4 myapp:app

參考:

 -w INT, --workers INT
            The number of worker processes for handling requests.

問題:為何調用 http://ip:8000不行呢, 這個是什么請求呢?

默認有-b參數,參考

 -b ADDRESS, --bind ADDRESS
            The socket to bind. [['127.0.0.1:8000']]

以下方式啟動就可以用ip的方式啟動了

sudo gunicorn -w 2 -b 0.0.0.0:4000 myapp:app

3. 示例代碼2

之前簡單的flask方法

from flask import Flask
app = Flask(__name__)

@app.route('/hello.world')
def check():
  return 'hello world!'


if __name__ == '__main__':
  app.run()

啟動

$sudo gunicorn -b 0.0.0.0:300 -w 4 myapp3:app
[2016-12-18 19:19:51 +0000] [21005] [INFO] Starting gunicorn 19.6.0
[2016-12-18 19:19:51 +0000] [21005] [INFO] Listening at: http://0.0.0.0:300 (21005)
[2016-12-18 19:19:51 +0000] [21005] [INFO] Using worker: sync
[2016-12-18 19:19:51 +0000] [21010] [INFO] Booting worker with pid: 21010
[2016-12-18 19:19:51 +0000] [21011] [INFO] Booting worker with pid: 21011
[2016-12-18 19:19:51 +0000] [21014] [INFO] Booting worker with pid: 21014
[2016-12-18 19:19:51 +0000] [21017] [INFO] Booting worker with pid: 21017

測試

$curl localhost:300/hello.world
hello world!

4. 啟動異常

[ERROR] Connection in use: ('127.0.0.1', 8000)

原因之一是之前啟動的進程沒有殺死。

注:ctrl+z 是掛起進程,但沒有終止。ctrl+c是終止進程。

如果使用了ctrl+z再回到進程中可使用fg命令,這樣可以用ctrl+c來關閉進程

看完上述內容,你們掌握如何在python中使用Gunicorn服務器的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

田林县| 鄯善县| 顺义区| 昭通市| 板桥市| 勐海县| 新沂市| 宁安市| 金川县| 武夷山市| 金秀| 茶陵县| 高台县| 新巴尔虎右旗| 淮北市| 喀什市| 大庆市| 晋宁县| 乌苏市| 阿荣旗| 漳平市| 沁阳市| 小金县| 富顺县| 吴旗县| 蒙山县| 宁南县| 康定县| 惠安县| 东光县| 河北区| 安宁市| 舟山市| 博客| 监利县| 昌邑市| 洛宁县| 岚皋县| 泰兴市| 财经| 冷水江市|