Gunicorn, pas de module nommé "myproject"

j'installe un site web déjà construit sur un nouveau serveur. Je ne suis pas développeur à l'origine.

J'ai utilisé Gunicorn + nginx dans le passé pour garder l'application en vie (en gros suivant ce tutoriel), mais j'ai des problèmes avec ça ici.

I source venv/bin/activate, puis ./manage.py runserver 0.0.0.0:8000 fonctionne bien et tout fonctionne comme prévu. J'ai fermé et run gunicorn --bind 0.0.0.0:8000 myproject.wsgi:application, et obtenez le résultat suivant:

[2016-09-13 01:11:47 +0000] [15259] [INFO] Starting gunicorn 19.6.0
[2016-09-13 01:11:47 +0000] [15259] [INFO] Listening at: http://0.0.0.0:8000 (15259)
[2016-09-13 01:11:47 +0000] [15259] [INFO] Using worker: sync
[2016-09-13 01:11:47 +0000] [15262] [INFO] Booting worker with pid: 15262
[2016-09-13 01:11:47 +0000] [15262] [ERROR] Exception in worker process
Traceback (most recent call last):
  File "/var/www/myproject/venv/lib/python3.5/site-packages/gunicorn/arbiter.py", line 557, in spawn_worker
    worker.init_process()
  File "/var/www/myproject/venv/lib/python3.5/site-packages/gunicorn/workers/base.py", line 126, in init_process
    self.load_wsgi()
  File "/var/www/myproject/venv/lib/python3.5/site-packages/gunicorn/workers/base.py", line 136, in load_wsgi
    self.wsgi = self.app.wsgi()
  File "/var/www/myproject/venv/lib/python3.5/site-packages/gunicorn/app/base.py", line 67, in wsgi
    self.callable = self.load()
  File "/var/www/myproject/venv/lib/python3.5/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
    return self.load_wsgiapp()
  File "/var/www/myproject/venv/lib/python3.5/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
    return util.import_app(self.app_uri)
  File "/var/www/myproject/venv/lib/python3.5/site-packages/gunicorn/util.py", line 357, in import_app
    __import__(module)
ImportError: No module named 'myproject.wsgi'
[2016-09-13 01:11:47 +0000] [15262] [INFO] Worker exiting (pid: 15262)
[2016-09-13 01:11:47 +0000] [15259] [INFO] Shutting down: Master
[2016-09-13 01:11:47 +0000] [15259] [INFO] Reason: Worker failed to boot.

je crois qu'il quelque chose à voir avec la structure de l'ensemble de l'application. Avant, j'ai construit des applications avec la structure de base:

myproject
├── manage.py
├── myproject
│   ├── urls.py
│   ├── views.py
│   ├── component1
│   │   ├── urls.py
│   │   └── views.py
│   ├── component2
│   │   ├── urls.py
│   │   └── views.py
├── venv
│   ├── bin
│   └── ...

celui-ci, au contraire, a une structure de la forme:

myproject
├── apps
│   ├── blog
│   │   ├── urls.py
│   │   ├── views.py
│   │     └── ...
│   ├── catalogue
│   │   ├── urls.py
│   │   ├── views.py
│   │     └── ...
│   ├── checkout
│   │   ├── urls.py
│   │   ├── views.py
│   │     └── ...
│   ├── core
│   │   ├── urls.py
│   │   ├── views.py
│   │     └── ...
│   ├── customer
│   ├── dashboard
│   └──  __init__.py
├── __init__.py
├── manage.py
├── project_static
│   ├── assets
│   ├── bower_components
│   └── js
├── public
│   ├── emails
│   ├── media
│   └── static
├── settings
│   ├── base.py
│   ├── dev.py
│   ├── __init__.py
│   ├── local.py
│   └── production.py
├── templates
│   ├── base.html
│   ├── basket
│   ├── blog
│   └── ....
├── urls.py
├── venv
│   ├── bin
│   ├── include
│   ├── lib
│   ├── pip-selfcheck.json
│   └── share
└── wsgi.py

donc, il n'y a pas de module 'principal' qui exécute le show, ce que gunicorn recherche.

des idées?

wsgi.py:

import os

from django.core.wsgi import get_wsgi_application

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")

application = get_wsgi_application()
22
demandé sur Good Idea 0000-00-00 00:00:00

1 réponses

Votre message d'erreur est

ImportError: No module named 'myproject.wsgi'

vous avez lancé l'application avec

gunicorn --bind 0.0.0.0:8000 myproject.wsgi:application

Et wsgi.py a la ligne

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")

c'est la déconnexion. Afin de reconnaître le projet myproject.wsgi parent le répertoire doit être sur le chemin python... cours d'exécution

cd .. && gunicorn --bind 0.0.0.0:8000 myproject.wsgi:application

éliminerait cette erreur. Cependant, vous obtiendriez alors une erreur différente parce que le wsgi.py le fichier fait référence à settings au lieu de myproject.settings. Ce implique que l'application était destinée à être exécutée à partir du répertoire racine au lieu d'un répertoire en haut. Vous pouvez en être sûr en regardant le code - s'il utilise des importations absolues, est-ce qu'ils disent généralement from myproject.app import ... ou from app import .... Si cette supposition est correcte, votre commande est

gunicorn --bind 0.0.0.0:8000 wsgi:application

Si l'application n'utiliser myproject dans tous les chemins, vous devrez modifier votre PYTHONPATH pour l'exécuter correctement...

PYTHONPATH=`pwd`/.. gunicorn --bind 0.0.0.0:8000 myproject.wsgi:application
33
répondu Paul Becotte 2016-09-13 01:49:36