web-dev-qa-db-ja.com

uWSGIは、FlaskおよびVirtualenvを使用して「アプリケーション」を見つけることができません

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 = '')(callable not foundまたはimport error)

******アプリが読み込まれていません。フルダイナミックモードに入る******

これは私のFlaskアプリです:

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

どんな助けでもありがたいです。

6
skyler

ファイル/var/www/coefficient/flask.pyで呼び出し可能な「アプリケーション」が見つかりません

キーです:)

アプリは「アプリ」呼び出し可能オブジェクトを定義しているため、「アプリケーション」ではなくuWSGIに検索を指示する必要があります。

オプションを使用できます

callable: app

そしてそれは動作します(これは公式Flaskドキュメントで説明されています)

13
roberto

または、iniにmodule = flaskapp:appを追加することもできます。

また、実際、callablewsgi-docs でより明確に対処されています。

FlaskはWSGI関数(このクイックスタートの最初に「アプリケーション」と呼んだもの)を「アプリ」としてエクスポートするため、uWSGIにそれを使用するように指示する必要があります:uwsgi --wsgi-file myflaskapp.py --callable app

4
tozCSS