web-dev-qa-db-ja.com

uwsgiオプション--wsgi-fileおよび--moduleが認識されない

Djangoアプリをuwsgiを使用して実行しようとしています。見つかったほとんどの手順では、アプリケーションを指定するために「--wsgi-file」と「--module」を参照していますが、「uwsgi」これらのオプションについては触れていません。私がそれらを試して使用すると、

uwsgi -s /tmp/uwsgi.sock --master --module myapp.wsgi
uwsgi: unrecognized option '--module'
getopt_long() error

そして

uwsgi -s /tmp/uwsgi.sock --master --wsgi-file myapp/wsgi.py
uwsgi: unrecognized option '--wsgi-file'
getopt_long() error

どちらもなしで実行すると、次のようになります。

uwsgi -s /tmp/uwsgi.sock --master 
*** Starting uWSGI 2.0.9 (64bit) on [Fri Jul 10 11:12:04 2015] ***
compiled with version: 4.4.7 20120313 (Red Hat 4.4.7-11) on 23 April 2015 19:31:15
os: Linux-2.6.32-504.16.2.el6.x86_64 #1 SMP Tue Mar 10 17:01:00 EDT 2015
machine: x86_64
clock source: unix
pcre jit disabled
detected number of CPU cores: 2
detected binary path: /usr/sbin/uwsgi
your processes number limit is 1024
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address /tmp/uwsgi.sock fd 5
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145536 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
*** no app loaded. going in full dynamic mode ***
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 26597)
spawned uWSGI worker 1 (pid: 26598, cores: 1)

これらのオプションが認識されないのはなぜですか?ロードするアプリを指定するにはどうすればよいですか?これはどんなゴミソフト? Gunicornを使用する必要がありますか?

22
aaa90210

これは、uWSGIのpythonプラグインがインストールまたはロードされていないことを意味します。実行を確認するには:

$ uwsgi --plugins-list

一般的に、ビルドに必須のpython-devなどがある場合は、次の方法でインストールできます。

$ pip install uwsgi

DebianまたはUbuntuでは、次の方法でもインストールできます。

$ apt-get install uwsgi-plugin-python

LinuxAlpine では、現在の場所を指定する必要があります。

$ apk add --update uwsgi-python
$ uwsgi --plugins-dir /usr/lib/uwsgi/ --need-plugin python --plugins-list
*** uWSGI loaded generic plugins ***

*** uWSGI loaded request plugins ***
0: python
...

または、次のようにしてフルパスを指定できます。

$ uwsgi --plugin /usr/lib/uwsgi/python_plugin.so --plugins-list
40
Wernight

Uwsgiのインストール方法によっては、pythonプラグインもインストールする必要がある場合があります。

apt-get install uwsgi-plugin-python
3
roj