uwsgi reclama sobre o aplicativo python não encontrado

2

parece bastante comum com o aplicativo uWSGI, mas ainda não consegue encontrar nenhuma solução valiosa.

Eu estou trabalhando no Ubuntu 12.04 com o uwsgi 1.0.3 e python2.7

Aqui está o meu arquivo config.ini:

  [uwsgi]
  uid = www-data
  gid = www-data
  pythonpath = /path/to/my/application
  plugins = python27
  module = launcher.py
  workers = 2
  vacuum = True
  max-requests = 1000000
  harakiri = 120
  harakiri-verbose = true
  need-app = true
  buffer-size = 32768
  listen = 200
  master-as-root = true
  max-fd = 10240
  #memory-report = true
  #stats = /tmp/stats.socket
  chown-socket = www-data

Tudo o que recebi dos arquivos de log é:

  [uWSGI] getting INI configuration from /usr/share/uwsgi/conf/default.ini
  [uWSGI] getting INI configuration from /etc/uwsgi/apps-enabled/my_application.ini

Não consigo encontrar uma maneira de ativá-lo manualmente (em primeiro plano, sem realizar a daemonização; li o doc aqui mas a opção --wsgi-file para sepcify o arquivo de configuração não funciona) ou para aumentar a verbosidade.

Eu passei horas analisando o google e o doc uwsgi para encontrar minha saída, qualquer ajuda seria muito apreciada.

EDITAR:

Parece que o uwsgi está começando agora e carregando o aplicativo cherrypy para trás. Mas neste momento, ele cai com a mensagem de erro:

CherryPy Checker:
The Application mounted at '' has an empty config.

[06/May/2014:14:40:57] ENGINE Started monitor thread 'Autoreloader'.
[06/May/2014:14:40:57] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2014:14:40:57] ENGINE Serving on 127.0.0.1:8080
[06/May/2014:14:40:57] ENGINE Bus STARTED
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x201c680 pid: 9890 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 9890)
spawned uWSGI worker 1 (pid: 9940, cores: 1)
spawned uWSGI worker 2 (pid: 9941, cores: 1)
metrics collector thread started
invalid signal timer syntax, must be: <signal> <seconds>
VACUUM: unix socket /run/uwsgi/app/uwsgi/socket removed.
root@test:/var/www/ce1sus# Tue May  6 14:40:57 2014 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!!
Tue May  6 14:40:57 2014 - uWSGI worker 2 screams: UAAAAAAH my master disconnected: i will kill myself !!!

Eu corro este comando:

uwsgi my_application.ini

Minha versão do uwsgi agora é 2.0.4;

Eu perdi algum passo em algum lugar? Muito obrigado pela sua ajuda

    
por philippe 05.05.2014 / 18:00

0 respostas