Created
February 28, 2014 07:21
-
-
Save amyrlam/9266757 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ foreman start | |
23:19:50 web.1 | started with pid 604 | |
23:19:50 web.1 | 2014-02-27 23:19:50 [604] [INFO] Starting gunicorn 18.0 | |
23:19:50 web.1 | 2014-02-27 23:19:50 [604] [INFO] Listening at: http://0.0.0.0:5000 (604) | |
23:19:50 web.1 | 2014-02-27 23:19:50 [604] [INFO] Using worker: sync | |
23:19:50 web.1 | 2014-02-27 23:19:50 [607] [INFO] Booting worker with pid: 607 | |
23:19:50 web.1 | 2014-02-27 23:19:50 [607] [ERROR] Exception in worker process: | |
23:19:50 web.1 | Traceback (most recent call last): | |
23:19:50 web.1 | File "/Users/amyrlam/.virtualenvs/www_amy/lib/python2.7/site-packages/gunicorn/arbiter.py", line 495, in spawn_worker | |
23:19:50 web.1 | worker.init_process() | |
23:19:50 web.1 | File "/Users/amyrlam/.virtualenvs/www_amy/lib/python2.7/site-packages/gunicorn/workers/base.py", line 106, in init_process | |
23:19:50 web.1 | self.wsgi = self.app.wsgi() | |
23:19:50 web.1 | File "/Users/amyrlam/.virtualenvs/www_amy/lib/python2.7/site-packages/gunicorn/app/base.py", line 114, in wsgi | |
23:19:50 web.1 | self.callable = self.load() | |
23:19:50 web.1 | File "/Users/amyrlam/.virtualenvs/www_amy/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 62, in load | |
23:19:50 web.1 | return self.load_wsgiapp() | |
23:19:50 web.1 | File "/Users/amyrlam/.virtualenvs/www_amy/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 49, in load_wsgiapp | |
23:19:50 web.1 | return util.import_app(self.app_uri) | |
23:19:50 web.1 | File "/Users/amyrlam/.virtualenvs/www_amy/lib/python2.7/site-packages/gunicorn/util.py", line 354, in import_app | |
23:19:50 web.1 | __import__(module) | |
23:19:50 web.1 | ImportError: No module named mysite.wsgi | |
23:19:50 web.1 | Traceback (most recent call last): | |
23:19:50 web.1 | File "/Users/amyrlam/.virtualenvs/www_amy/lib/python2.7/site-packages/gunicorn/arbiter.py", line 495, in spawn_worker | |
23:19:50 web.1 | worker.init_process() | |
23:19:50 web.1 | File "/Users/amyrlam/.virtualenvs/www_amy/lib/python2.7/site-packages/gunicorn/workers/base.py", line 106, in init_process | |
23:19:50 web.1 | self.wsgi = self.app.wsgi() | |
23:19:50 web.1 | File "/Users/amyrlam/.virtualenvs/www_amy/lib/python2.7/site-packages/gunicorn/app/base.py", line 114, in wsgi | |
23:19:50 web.1 | self.callable = self.load() | |
23:19:50 web.1 | File "/Users/amyrlam/.virtualenvs/www_amy/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 62, in load | |
23:19:50 web.1 | return self.load_wsgiapp() | |
23:19:50 web.1 | File "/Users/amyrlam/.virtualenvs/www_amy/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 49, in load_wsgiapp | |
23:19:50 web.1 | return util.import_app(self.app_uri) | |
23:19:50 web.1 | File "/Users/amyrlam/.virtualenvs/www_amy/lib/python2.7/site-packages/gunicorn/util.py", line 354, in import_app | |
23:19:50 web.1 | __import__(module) | |
23:19:50 web.1 | ImportError: No module named mysite.wsgi | |
23:19:50 web.1 | 2014-02-27 23:19:50 [607] [INFO] Worker exiting (pid: 607) | |
23:19:50 web.1 | 2014-02-27 23:19:50 [604] [INFO] Shutting down: Master | |
23:19:50 web.1 | 2014-02-27 23:19:50 [604] [INFO] Reason: Worker failed to boot. | |
23:19:50 web.1 | exited with code 3 | |
23:19:50 system | sending SIGTERM to all processes | |
SIGTERM received |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment