por que o projeto do django falhou na implementação? - django + nginx + uwsgi

2

Estou tentando implantar um projeto Django por meio do Nginx e do uWSGI. Se eu executar o projeto manualmente executando python manage.py runserver :8000 , ele funciona bem, então o projeto em si não é o problema, eu acho.

Eu instalei o Django e dependências dentro de um virtualenv dedicado, e coloquei o projeto. Eu também instalei nginx e uwsgi FORA do virtualenv, e comecei a criar arquivos de configuração:

/etc/nginx/sites-available/myproject (link simbólico ativado para sites):

upstream uwsgi_myproject {
    server 127.0.0.1:5678;
}

server {
    listen 80;
    server_name my.url.net;
    set $home /path/to/myvirtualenv;
    access_log /path/to/myvirtualenv/log/access_uwsgi.log;
    error_log /path/to/myvirtualenv/log/error_uwsgi.log;

    client_max_body_size 10m;
    keepalive_timeout 120;

    location / {
        uwsgi_pass uwsgi_myproject;
        include uwsgi_params;
        gzip on;
        uwsgi_param UWSGI_CHDIR $home/path/to/myproject;
        uwsgi_param UWSGI_SCRIPT uwsgi;
        uwsgi_param UWSGI_PYHOME $home;
        root $home;
    }
    location /static/  {
        alias /path/to/myvirtualenv/path/to/myproject/static/;
        expires max;
        autoindex off;
    }
    location /media_adm/  {
        alias /path/to/myvirtualenv/lib/python2.7/site-packages/grappelli/static/;
        autoindex off;
    }
}

/etc/init/uwsgi_myproject.conf :

description "uWSGI starter for myproject"

start on (local-filesystems and runlevel [2345])
stop on runlevel [016]

respawn

exec /path/to/myvirtualenv/bin/uwsgi \
--uid venvowner \
--home /path/to/myvirtualenv \
--pythonpath /path/to/myvirtualenv/path/to/myproject/ \
--socket 127.0.0.1:5678 \
--chmod-socket \
--module wsgi \
-b 8192 \
--logdate \
--optimize 2 \
--processes 2 \
--master \
--logto /path/to/myvirtualenv/log/uwsgi.log

/path/to/myvirtualenv/path/to/myproject/wsgi.py :

import os, sys, site

site.addsitedir('/path/to/myvirtualenv/lib/python2.7/site-packages')
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "myproject.settings")

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()

Então eu reiniciei a máquina e tentei conectar ao my.url.net, mas não houve resposta (quando eu instalei o nginx antes de importar meu projeto, ele respondeu com "Welcome to Nginx!"). Eu notei com lsof | grep LISTEN que o soquete upstream não foi criado. Os logs não produzem nada relevante , então eu tentei executar o uwsgi manualmente com os mesmos parâmetros que uwsgi_myproject.conf e obtive esta saída:

current working directory: /etc/init
detected binary path: /path/to/myvirtualenv/bin/uwsgi
uWSGI running as root, you can use --uid/--gid/--chroot options
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 6674
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)
The -s/--socket option is missing and stdin is not a socket.

EDIT: Então a última coisa que tentei foi reordenar os parâmetros. Agora o parâmetro --socket é processado com sucesso, mas eu ainda obtenho esta mensagem nas linhas de saída:

*** no app loaded. going in full dynamic mode ***

Alguns documentos que tenho lido:

Alguma idéia sobre o que estou perdendo ou negligenciando?

CONTINUE: eu revi os documentos novamente e tentei uma abordagem diferente: usando um arquivo .ini e executando-o manualmente para ver o que acontece:

É um pouco feio, mas aqui vai:

[uwsgi]
socket = 127.0.0.1:5678
uid = venvowner
chdir = /path/to/myvirtualenv
home = /path/to/myvirtualenv
virtualenv = /path/to/myvirtualenv
pythonpath = /path/to/myvirtualenv/path/to/myproject
module = wsgi
master = true
optimize = 2
processes = 2
logto = /path/to/myvirtualenv/log/uwsgi.log

Eu obtive alguns logs úteis:

*** Python threads support is disabled. You can enable it with --enable-threads ***
*** Operational MODE: preforking ***
ImportError: No module named wsgi
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 ***

Os trabalhadores são gerados, mas a pilha obviamente falha. Vou levar isso em outro dia.

    
por SebasSBM 07.04.2015 / 18:38

1 resposta

1

Finalmente, consegui que funcionasse. Obrigado a @DhirajThakur por seu comentário, que me ajudou a olhar na direção certa.

/etc/init/uwsgi_myproject.conf :

description "uWSGI starter for myproject"

start on (local-filesystems and runlevel [2345])
stop on runlevel [016]

respawn

exec /usr/local/bin/uwsgi /etc/init/myproject.ini

/etc/init/myproject.ini :

[uwsgi]
master = true
socket = 127.0.0.1:5678
uid = venvowner
chdir = /path/to/myvirtualenv
home = /path/to/myvirtualenv
virtualenv = /path/to/myvirtualenv
pythonpath = /path/to/myvirtualenv/path/to/myproject
wsgi-file = /path/to/myvirtualenv/path/to/myproject/wsgi.py
optimize = 2
processes = 2
logto = /path/to/myvirtualenv/log/uwsgi.log

De alguma forma, tenho a sensação de que a maneira como resolvi o problema é um pouco feia e difícil.

    
por 04.05.2015 / 15:57