Python

uWSGI 找不到使用 Flask 和 Virtualenv 的“應用程序”

  • May 19, 2017

使用 uWSGI 服務於一個簡單的 wsgi 應用程序(一個簡單的“Hello, World”)我的配置工作,但是當我嘗試執行一個 Flask 應用程序時,我在 uWSGI 的錯誤日誌中得到了這個:

current working directory: /opt/python-env/coefficient/lib/python2.6/site-packages
writing pidfile to /var/run/uwsgi.pid
detected binary path: /opt/uwsgi/uwsgi
setuid() to 497
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
uwsgi socket 0 bound to TCP address 127.0.0.1:3031 fd 3
Python version: 2.6.6 (r266:84292, Jun 18 2012, 14:18:47)  [GCC 4.4.6 20110731 (Red Hat 4.4.6-3)]
Set PythonHome to /opt/python-env/coefficient/
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0xbed3b0
your server socket listen backlog is limited to 100 connections
*** Operational MODE: single process ***
added /opt/python-env/coefficient/lib/python2.6/site-packages/ to pythonpath.
unable to find "application" callable in file /var/www/coefficient/flask.py
unable to load app 0 (mountpoint='') (callable not found or import error)
*** no app loaded. going in full dynamic mode ***
*** uWSGI is running in multiple interpreter mode ***`

特別注意這部分日誌:

無法在文件 /var/www/coefficient/flask.py 中找到可呼叫的“應用程序”

無法載入應用程序 0 (mountpoint=’’) (找不到可呼叫或導入錯誤)

沒有載入應用程序。進入全動態模式

這是我的燒瓶應用程序:

from flask import Flask

app = Flask(__name__)

@app.route("/")
def hello():
   return "Hello, World, from Flask!"

在將 Virtualenv 的 pythonpath 添加到配置文件之前,我收到了 Flask 的 ImportError。我解決了這個問題,我相信(我不再收到關於它的錯誤),這是我完整的配置文件:

uwsgi:
 #socket: /tmp/uwsgi.sock 
 socket: 127.0.0.1:3031
 daemonize: /var/log/uwsgi.log
 pidfile: /var/run/uwsgi.pid
 master: true
 vacuum: true
 #wsgi-file: /var/www/coefficient/coefficient.py
 wsgi-file: /var/www/coefficient/flask.py
 processes: 1
 virtualenv: /opt/python-env/coefficient/
 pythonpath: /opt/python-env/coefficient/lib/python2.6/site-packages

這就是我從 rc 腳本啟動 uWSGI 的方式:

/opt/uwsgi/uwsgi --yaml /etc/uwsgi/conf.yaml --uid uwsgi

如果我嘗試在瀏覽器中查看 Flask 程序,我會得到:

**uWSGI Error**

Python application not found

任何幫助表示讚賞。

無法在文件 /var/www/coefficient/flask.py 中找到可呼叫的“應用程序”

是關鍵:)

您的應用程序正在定義一個“應用程序”可呼叫,因此您必須指示 uWSGI 搜尋它,而不是“應用程序”。

您可以使用該選項

callable: app

它會起作用(這在官方 Flask 文件中有解釋)

或者,您可以添加module = flaskapp:app到您的 ini。

此外,確實,callableuwsgi-docs 中更清楚地解決了:

Flask 將其 WSGI 函式(我們在本快速入門的開頭稱為“應用程序”)導出為“app”,因此我們需要指示 uWSGI 使用它:uwsgi --wsgi-file myflaskapp.py --callable app

引用自:https://serverfault.com/questions/412849