--
Please help us keep the Taiga.io Community open and inclusive, follow our Code of Conduct:
https://github.com/taigaio/code-of-conduct/blob/master/CODE_OF_CONDUCT.md
---
You received this message because you are subscribed to the Google Groups "taigaio" group.
To unsubscribe from this group and stop receiving emails from it, send an email to taigaio+unsubscribe@googlegroups.com.
To post to this group, send email to tai...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/taigaio/2fc43e06-f812-41ea-8882-8251da1057f5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
please help me....!!On Fri, Sep 30, 2016 at 1:18 PM, fatima batool <fbato...@gmail.com> wrote:here is my locl.py# -*- coding: utf-8 -*-# Copyright (C) 2014-2016 Andrey Antukh <ni...@niwi.nz># Copyright (C) 2014-2016 Jesús Espino <jesp...@gmail.com># Copyright (C) 2014-2016 David Barragán <bam...@dbarragan.com># Copyright (C) 2014-2016 Alejandro Alonso <alejandr...@kaleidos.net># This program is free software: you can redistribute it and/or modify# it under the terms of the GNU Affero General Public License as# published by the Free Software Foundation, either version 3 of the# License, or (at your option) any later version.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the# GNU Affero General Public License for more details.## You should have received a copy of the GNU Affero General Public License# along with this program. If not, see <http://www.gnu.org/licenses/>.from .development import *#DEBUG = False#ADMINS = (# ("Admin", "exa...@example.com"),#)DATABASES = {'default': {'ENGINE': 'django.db.backends.postgresql','NAME': 'taiga','USER': 'taiga','PASSWORD': 'changeme','HOST': '','PORT': '',}}#SITES = {# "api": {# "scheme": "http",# "domain": "localhost:8000",# "name": "api"# },# "front": {# "scheme": "http",# "domain": "localhost:9001",# "name": "front"# },#}#SITE_ID = "api"#MEDIA_ROOT = '/home/taiga/media'#STATIC_ROOT = '/home/taiga/static'# EMAIL SETTINGS EXAMPLE#EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'#EMAIL_USE_TLS = False#EMAIL_HOST = 'localhost'#EMAIL_PORT = 25#EMAIL_HOST_USER = 'user'#EMAIL_HOST_PASSWORD = 'password'#DEFAULT_FROM_EMAIL = "jo...@doe.com"# GMAIL SETTINGS EXAMPLE#EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'#EMAIL_USE_TLS = True#EMAIL_HOST = 'smtp.gmail.com'#EMAIL_PORT = 587#EMAIL_HOST_USER = 'your...@gmail.com'#EMAIL_HOST_PASSWORD = 'yourpassword'# THROTTLING#REST_FRAMEWORK["DEFAULT_THROTTLE_RATES"] = {# "anon": "20/min",# "user": "200/min",# "import-mode": "20/sec",# "import-dump-mode": "1/minute"#}# GITHUB SETTINGS#GITHUB_URL = "https://github.com/"#GITHUB_API_URL = "https://api.github.com/"#GITHUB_API_CLIENT_ID = "yourgithubclientid"#GITHUB_API_CLIENT_SECRET = "yourgithubclientsecret"# FEEDBACK MODULE (See config in taiga-front too)#FEEDBACK_ENABLED = True#FEEDBACK_EMAIL = "sup...@taiga.io"# STATS MODULE#STATS_ENABLED = False#FRONT_SITEMAP_CACHE_TIMEOUT = 60*60 # In second# SITEMAP# If is True /front/sitemap.xml show a valid sitemap of taiga-front client#FRONT_SITEMAP_ENABLED = False#FRONT_SITEMAP_CACHE_TIMEOUT = 24*60*60 # In second# CELERY#from .celery import *#CELERY_ENABLED = True## To use celery in memory#CELERY_ENABLED = True#CELERY_ALWAYS_EAGER = Truefrom .common import *MEDIA_URL = "http://192.168.17.149/media/"STATIC_URL = "http://192.168.17.149/static/"ADMIN_MEDIA_PREFIX = "http://192.168.17.149/static/admin/"SITES["front"]["scheme"] = "http"SITES["front"]["domain"] = "192.168.17.149"DEBUG = TrueTEMPLATE_DEBUG = TruePUBLIC_REGISTER_ENABLED = TrueDEFAULT_FROM_EMAIL = "no-r...@example.com"SERVER_EMAIL = DEFAULT_FROM_EMAILfrom .celery import *BROKER_URL = 'amqp://guest:gu...@192.168.17.149:5672//'CELERY_RESULT_BACKEND = 'redis://192.168.17.149:6379/0'CELERY_ENABLED = TrueEVENTS_PUSH_BACKEND = "taiga.events.backends.rabbitmq.EventsPushBackend"EVENTS_PUSH_BACKEND_OPTIONS = {"url": "amqp://taiga:PASSWORD@localhost:5672/taiga"}On Fri, Sep 30, 2016 at 1:16 PM, fatima batool <fbato...@gmail.com> wrote:here is my circus.ini file...[circus]check_delay = 5endpoint = tcp://127.0.0.1:5555pubsub_endpoint = tcp://127.0.0.1:5556statsd = true[watcher:taiga]working_dir = /home/taiga/taiga-backcmd = gunicornargs = -w 3 -t 60 --pythonpath=. -b 127.0.0.1:8001 taiga.wsgiuid = taiganumprocesses = 1autostart = truesend_hup = truestdout_stream.class = FileStreamstdout_stream.filename = /home/taiga/logs/gunicorn.stdout.logstdout_stream.max_bytes = 10485760stdout_stream.backup_count = 4stderr_stream.class = FileStreamstderr_stream.filename = /home/taiga/logs/gunicorn.stderr.logstderr_stream.max_bytes = 10485760stderr_stream.backup_count = 4[env:taiga]PATH = /home/taiga/.virtualenvs/taiga/bin:$PATHTERM=rxvt-256colorSHELL=/bin/bashUSER=taigaLANG=en_US.UTF-8HOME=/home/taigaPYTHONPATH=/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages[watcher:taiga-celery]working_dir = /home/taiga/taiga-backcmd = celeryargs = -A taiga worker -c 4uid = taiganumprocesses = 1autostart = truesend_hup = truestdout_stream.class = FileStreamstdout_stream.filename = /home/taiga/logs/celery.stdout.logstdout_stream.max_bytes = 10485760stdout_stream.backup_count = 4stderr_stream.class = FileStreamstderr_stream.filename = /home/taiga/logs/celery.stderr.logstderr_stream.max_bytes = 10485760stderr_stream.backup_count = 4[env:taiga-celery]PATH = /home/taiga/.virtualenvs/taiga/bin:$PATHTERM=rxvt-256colorSHELL=/bin/bashUSER=taigaLANG=en_US.UTF-8HOME=/home/taigaPYTHONPATH=/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages[watcher:taiga-events]working_dir = /home/taiga/taiga-eventscmd = /usr/local/bin/coffeeargs = index.coffeeuid = taiganumprocesses = 1autostart = truesend_hup = truestdout_stream.class = FileStreamstdout_stream.filename = /home/taiga/logs/taigaevents.stdout.logstdout_stream.max_bytes = 10485760stdout_stream.backup_count = 12stderr_stream.class = FileStreamstderr_stream.filename = /home/taiga/logs/taigaevents.stderr.logstderr_stream.max_bytes = 10485760stderr_stream.backup_count = 12here is a result of(taiga)taiga@example:~$ python manage.py runserverpython: can't open file 'manage.py': [Errno 2] No such file or directory
ADMIN_MEDIA_PREFIX = "http://192.168.17.149/static/admin/"
(...)
TEMPLATE_DEBUG = True
(taiga)taiga@example:~$ cd taiga-back(taiga)taiga@example:~/taiga-back$ python manage.py runserverTrying import local.py settings...Trying import local.py settings...Performing system checks...System check identified some issues:WARNINGS:?: (1_8.W001) The standalone TEMPLATE_* settings were deprecated in Django 1.8 a nd the TEMPLATES dictionary takes precedence. You must put the values of the fol lowing settings into your default TEMPLATES dict: TEMPLATE_DEBUG.System check identified 1 issue (0 silenced).September 30, 2016 - 08:35:15Django version 1.9.2, using settings 'settings'Starting development server at http://127.0.0.1:8000/Quit the server with CONTROL-C.
ok i have delete these line
circusctl statusplease help me
Suggest me some solution please
It seems that you gunicorn can start properly.[2016-09-30 13:08:03 +0500] [2135] [CRITICAL] WORKER TIMEOUT (pid:2148)I don't know why it could be happenOn Fri, Sep 30, 2016 at 2:01 PM, fatima batool <fbato...@gmail.com> wrote:my gunicorn.stdout.logis emptyOn Fri, Sep 30, 2016 at 4:50 PM, fatima batool <fbato...@gmail.com> wrote:here is my gunicorn.stderr.log[2016-09-26 16:04:06 +0500] [3503] [INFO] Starting gunicorn 19.4.5[2016-09-26 16:04:06 +0500] [3503] [INFO] Listening at: http://127.0.0.1:8001 (3503)[2016-09-26 16:04:06 +0500] [3503] [INFO] Using worker: sync[2016-09-26 16:04:06 +0500] [3515] [INFO] Booting worker with pid: 3515[2016-09-26 16:04:06 +0500] [3516] [INFO] Booting worker with pid: 3516[2016-09-26 16:04:07 +0500] [3517] [INFO] Booting worker with pid: 3517[2016-09-26 16:04:13 +0500] [3503] [INFO] Handling signal: term[2016-09-26 16:04:27 +0500] [3632] [INFO] Starting gunicorn 19.4.5[2016-09-26 16:04:27 +0500] [3632] [ERROR] Connection in use: ('127.0.0.1', 8001)[2016-09-26 16:04:27 +0500] [3632] [ERROR] Retrying in 1 second.[2016-09-26 16:04:28 +0500] [3632] [ERROR] Connection in use: ('127.0.0.1', 8001)[2016-09-26 16:04:28 +0500] [3632] [ERROR] Retrying in 1 second.[2016-09-26 16:04:29 +0500] [3632] [ERROR] Connection in use: ('127.0.0.1', 8001)[2016-09-26 16:04:29 +0500] [3632] [ERROR] Retrying in 1 second.[2016-09-26 16:04:30 +0500] [3632] [ERROR] Connection in use: ('127.0.0.1', 8001)[2016-09-26 16:04:30 +0500] [3632] [ERROR] Retrying in 1 second.[2016-09-26 16:04:31 +0500] [3632] [ERROR] Connection in use: ('127.0.0.1', 8001)[2016-09-26 16:04:31 +0500] [3632] [ERROR] Retrying in 1 second.[2016-09-26 16:04:32 +0500] [3632] [ERROR] Can't connect to ('127.0.0.1', 8001)[2016-09-26 16:04:40 +0500] [3671] [INFO] Starting gunicorn 19.4.5[2016-09-26 16:04:40 +0500] [3671] [ERROR] Connection in use: ('127.0.0.1', 8001)[2016-09-26 16:04:40 +0500] [3671] [ERROR] Retrying in 1 second.[2016-09-26 16:04:41 +0500] [3671] [ERROR] Connection in use: ('127.0.0.1', 8001)[2016-09-26 16:04:41 +0500] [3671] [ERROR] Retrying in 1 second.[2016-09-26 16:04:42 +0500] [3671] [ERROR] Connection in use: ('127.0.0.1', 8001)[2016-09-26 16:04:42 +0500] [3671] [ERROR] Retrying in 1 second.[2016-09-26 16:04:43 +0500] [3671] [INFO] Listening at: http://127.0.0.1:8001 (3671)[2016-09-26 16:04:43 +0500] [3671] [INFO] Using worker: sync[2016-09-26 16:04:43 +0500] [3713] [INFO] Booting worker with pid: 3713[2016-09-26 16:04:43 +0500] [3715] [INFO] Booting worker with pid: 3715[2016-09-26 16:04:43 +0500] [3717] [INFO] Booting worker with pid: 3717[2016-09-26 16:05:17 +0500] [3671] [INFO] Handling signal: term
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 16:05:26 +0500] [3671] [INFO] Shutting down: Master[2016-09-26 16:05:28 +0500] [3867] [INFO] Starting gunicorn 19.4.5[2016-09-26 16:05:28 +0500] [3867] [INFO] Listening at: http://127.0.0.1:8001 (3867)[2016-09-26 16:05:28 +0500] [3867] [INFO] Using worker: sync[2016-09-26 16:05:28 +0500] [3870] [INFO] Booting worker with pid: 3870[2016-09-26 16:05:28 +0500] [3871] [INFO] Booting worker with pid: 3871[2016-09-26 16:05:28 +0500] [3872] [INFO] Booting worker with pid: 3872[2016-09-26 16:56:51 +0500] [3867] [INFO] Handling signal: term
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 16:57:21 +0500] [3867] [INFO] Shutting down: Master[2016-09-26 16:57:32 +0500] [8624] [INFO] Starting gunicorn 19.4.5[2016-09-26 16:57:32 +0500] [8624] [INFO] Listening at: http://127.0.0.1:8001 (8624)[2016-09-26 16:57:32 +0500] [8624] [INFO] Using worker: sync[2016-09-26 16:57:32 +0500] [8636] [INFO] Booting worker with pid: 8636[2016-09-26 16:57:32 +0500] [8637] [INFO] Booting worker with pid: 8637[2016-09-26 16:57:32 +0500] [8638] [INFO] Booting worker with pid: 8638
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 16:58:08 +0500] [8624] [INFO] Shutting down: Master[2016-09-26 16:58:08 +0500] [8624] [INFO] Reason: Worker failed to boot.[2016-09-26 16:58:09 +0500] [8727] [INFO] Starting gunicorn 19.4.5[2016-09-26 16:58:09 +0500] [8727] [INFO] Listening at: http://127.0.0.1:8001 (8727)[2016-09-26 16:58:09 +0500] [8727] [INFO] Using worker: sync[2016-09-26 16:58:09 +0500] [8730] [INFO] Booting worker with pid: 8730[2016-09-26 16:58:09 +0500] [8731] [INFO] Booting worker with pid: 8731[2016-09-26 16:58:09 +0500] [8732] [INFO] Booting worker with pid: 8732
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 184, in runself.sleep()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleepready = select.select([self.PIPE[0]], [], [], 1.0)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>During handling of the above exception, another exception occurred:Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/bin/gunicorn", line 11, in <module>sys.exit(run())File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/wsgiapp.py", line 74, in runWSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in runsuper(Application, self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in runArbiter(self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in runself.halt(reason=inst.reason, exit_status=inst.exit_status)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 302, in haltself.stop()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stoptime.sleep(0.1)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>[2016-09-26 16:58:20 +0500] [8816] [INFO] Starting gunicorn 19.4.5[2016-09-26 16:58:20 +0500] [8816] [INFO] Listening at: http://127.0.0.1:8001 (8816)[2016-09-26 16:58:20 +0500] [8816] [INFO] Using worker: sync[2016-09-26 16:58:20 +0500] [8820] [INFO] Booting worker with pid: 8820[2016-09-26 16:58:20 +0500] [8822] [INFO] Booting worker with pid: 8822[2016-09-26 16:58:20 +0500] [8823] [INFO] Booting worker with pid: 8823
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 16:58:28 +0500] [8816] [INFO] Shutting down: Master[2016-09-26 16:58:28 +0500] [8816] [INFO] Reason: Worker failed to boot.[2016-09-26 16:58:29 +0500] [8906] [INFO] Starting gunicorn 19.4.5[2016-09-26 16:58:29 +0500] [8906] [INFO] Listening at: http://127.0.0.1:8001 (8906)[2016-09-26 16:58:29 +0500] [8906] [INFO] Using worker: sync[2016-09-26 16:58:29 +0500] [8909] [INFO] Booting worker with pid: 8909[2016-09-26 16:58:29 +0500] [8910] [INFO] Booting worker with pid: 8910[2016-09-26 16:58:29 +0500] [8911] [INFO] Booting worker with pid: 8911
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 16:58:38 +0500] [8906] [INFO] Shutting down: Master[2016-09-26 16:58:38 +0500] [8906] [INFO] Reason: Worker failed to boot.[2016-09-26 16:58:39 +0500] [8995] [INFO] Starting gunicorn 19.4.5[2016-09-26 16:58:39 +0500] [8995] [INFO] Listening at: http://127.0.0.1:8001 (8995)[2016-09-26 16:58:39 +0500] [8995] [INFO] Using worker: sync[2016-09-26 16:58:39 +0500] [8998] [INFO] Booting worker with pid: 8998[2016-09-26 16:58:39 +0500] [9000] [INFO] Booting worker with pid: 9000[2016-09-26 16:58:40 +0500] [9001] [INFO] Booting worker with pid: 9001
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 16:58:47 +0500] [8995] [INFO] Shutting down: Master[2016-09-26 16:58:47 +0500] [8995] [INFO] Reason: Worker failed to boot.[2016-09-26 16:58:49 +0500] [9084] [INFO] Starting gunicorn 19.4.5[2016-09-26 16:58:49 +0500] [9084] [INFO] Listening at: http://127.0.0.1:8001 (9084)[2016-09-26 16:58:49 +0500] [9084] [INFO] Using worker: sync[2016-09-26 16:58:49 +0500] [9088] [INFO] Booting worker with pid: 9088[2016-09-26 16:58:49 +0500] [9090] [INFO] Booting worker with pid: 9090[2016-09-26 16:58:49 +0500] [9089] [INFO] Booting worker with pid: 9089
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 16:58:58 +0500] [9084] [INFO] Shutting down: Master[2016-09-26 16:58:58 +0500] [9084] [INFO] Reason: Worker failed to boot.[2016-09-26 16:58:59 +0500] [9174] [INFO] Starting gunicorn 19.4.5[2016-09-26 16:58:59 +0500] [9174] [INFO] Listening at: http://127.0.0.1:8001 (9174)[2016-09-26 16:58:59 +0500] [9174] [INFO] Using worker: sync[2016-09-26 16:58:59 +0500] [9177] [INFO] Booting worker with pid: 9177[2016-09-26 16:58:59 +0500] [9178] [INFO] Booting worker with pid: 9178[2016-09-26 16:58:59 +0500] [9179] [INFO] Booting worker with pid: 9179
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 16:59:08 +0500] [9174] [INFO] Shutting down: Master[2016-09-26 16:59:08 +0500] [9174] [INFO] Reason: Worker failed to boot.[2016-09-26 16:59:09 +0500] [9263] [INFO] Starting gunicorn 19.4.5[2016-09-26 16:59:09 +0500] [9263] [INFO] Listening at: http://127.0.0.1:8001 (9263)[2016-09-26 16:59:09 +0500] [9263] [INFO] Using worker: sync[2016-09-26 16:59:09 +0500] [9266] [INFO] Booting worker with pid: 9266[2016-09-26 16:59:09 +0500] [9267] [INFO] Booting worker with pid: 9267[2016-09-26 16:59:10 +0500] [9269] [INFO] Booting worker with pid: 9269
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 16:59:18 +0500] [9263] [INFO] Shutting down: Master[2016-09-26 16:59:18 +0500] [9263] [INFO] Reason: Worker failed to boot.[2016-09-26 16:59:19 +0500] [9352] [INFO] Starting gunicorn 19.4.5[2016-09-26 16:59:20 +0500] [9352] [INFO] Listening at: http://127.0.0.1:8001 (9352)[2016-09-26 16:59:20 +0500] [9352] [INFO] Using worker: sync[2016-09-26 16:59:20 +0500] [9356] [INFO] Booting worker with pid: 9356[2016-09-26 16:59:20 +0500] [9357] [INFO] Booting worker with pid: 9357[2016-09-26 16:59:20 +0500] [9358] [INFO] Booting worker with pid: 9358
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 16:59:27 +0500] [9352] [INFO] Shutting down: Master[2016-09-26 16:59:27 +0500] [9352] [INFO] Reason: Worker failed to boot.[2016-09-26 16:59:29 +0500] [9442] [INFO] Starting gunicorn 19.4.5[2016-09-26 16:59:29 +0500] [9442] [INFO] Listening at: http://127.0.0.1:8001 (9442)[2016-09-26 16:59:29 +0500] [9442] [INFO] Using worker: sync[2016-09-26 16:59:29 +0500] [9445] [INFO] Booting worker with pid: 9445[2016-09-26 16:59:29 +0500] [9448] [INFO] Booting worker with pid: 9448[2016-09-26 16:59:29 +0500] [9447] [INFO] Booting worker with pid: 9447
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 16:59:37 +0500] [9442] [INFO] Shutting down: Master[2016-09-26 16:59:37 +0500] [9442] [INFO] Reason: Worker failed to boot.[2016-09-26 16:59:39 +0500] [9531] [INFO] Starting gunicorn 19.4.5[2016-09-26 16:59:39 +0500] [9531] [INFO] Listening at: http://127.0.0.1:8001 (9531)[2016-09-26 16:59:39 +0500] [9531] [INFO] Using worker: sync[2016-09-26 16:59:39 +0500] [9534] [INFO] Booting worker with pid: 9534[2016-09-26 16:59:39 +0500] [9536] [INFO] Booting worker with pid: 9536[2016-09-26 16:59:39 +0500] [9537] [INFO] Booting worker with pid: 9537
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 16:59:47 +0500] [9531] [INFO] Shutting down: Master[2016-09-26 16:59:47 +0500] [9531] [INFO] Reason: Worker failed to boot.[2016-09-26 16:59:49 +0500] [9620] [INFO] Starting gunicorn 19.4.5[2016-09-26 16:59:49 +0500] [9620] [INFO] Listening at: http://127.0.0.1:8001 (9620)[2016-09-26 16:59:49 +0500] [9620] [INFO] Using worker: sync[2016-09-26 16:59:49 +0500] [9624] [INFO] Booting worker with pid: 9624[2016-09-26 16:59:49 +0500] [9625] [INFO] Booting worker with pid: 9625[2016-09-26 16:59:49 +0500] [9627] [INFO] Booting worker with pid: 9627
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 16:59:57 +0500] [9620] [INFO] Shutting down: Master[2016-09-26 16:59:57 +0500] [9620] [INFO] Reason: Worker failed to boot.[2016-09-26 16:59:59 +0500] [9710] [INFO] Starting gunicorn 19.4.5[2016-09-26 16:59:59 +0500] [9710] [INFO] Listening at: http://127.0.0.1:8001 (9710)[2016-09-26 16:59:59 +0500] [9710] [INFO] Using worker: sync[2016-09-26 16:59:59 +0500] [9713] [INFO] Booting worker with pid: 9713[2016-09-26 16:59:59 +0500] [9714] [INFO] Booting worker with pid: 9714[2016-09-26 16:59:59 +0500] [9716] [INFO] Booting worker with pid: 9716
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:00:06 +0500] [9710] [INFO] Shutting down: Master[2016-09-26 17:00:06 +0500] [9710] [INFO] Reason: Worker failed to boot.[2016-09-26 17:00:09 +0500] [9799] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:00:09 +0500] [9799] [INFO] Listening at: http://127.0.0.1:8001 (9799)[2016-09-26 17:00:09 +0500] [9799] [INFO] Using worker: sync[2016-09-26 17:00:09 +0500] [9802] [INFO] Booting worker with pid: 9802[2016-09-26 17:00:09 +0500] [9803] [INFO] Booting worker with pid: 9803[2016-09-26 17:00:10 +0500] [9804] [INFO] Booting worker with pid: 9804
Trying import local.py settings...Trying import local.py settings...
Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 184, in runself.sleep()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleepready = select.select([self.PIPE[0]], [], [], 1.0)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>During handling of the above exception, another exception occurred:Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/bin/gunicorn", line 11, in <module>sys.exit(run())File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/wsgiapp.py", line 74, in runWSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in runsuper(Application, self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in runArbiter(self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in runself.halt(reason=inst.reason, exit_status=inst.exit_status)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 302, in haltself.stop()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stoptime.sleep(0.1)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>Trying import local.py settings...[2016-09-26 17:00:19 +0500] [9888] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:00:19 +0500] [9888] [INFO] Listening at: http://127.0.0.1:8001 (9888)[2016-09-26 17:00:19 +0500] [9888] [INFO] Using worker: sync[2016-09-26 17:00:19 +0500] [9892] [INFO] Booting worker with pid: 9892[2016-09-26 17:00:19 +0500] [9893] [INFO] Booting worker with pid: 9893[2016-09-26 17:00:19 +0500] [9894] [INFO] Booting worker with pid: 9894
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:00:27 +0500] [9888] [INFO] Shutting down: Master[2016-09-26 17:00:27 +0500] [9888] [INFO] Reason: Worker failed to boot.[2016-09-26 17:00:29 +0500] [9978] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:00:29 +0500] [9978] [INFO] Listening at: http://127.0.0.1:8001 (9978)[2016-09-26 17:00:29 +0500] [9978] [INFO] Using worker: sync[2016-09-26 17:00:29 +0500] [9981] [INFO] Booting worker with pid: 9981[2016-09-26 17:00:29 +0500] [9982] [INFO] Booting worker with pid: 9982[2016-09-26 17:00:29 +0500] [9984] [INFO] Booting worker with pid: 9984
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:00:37 +0500] [9978] [INFO] Shutting down: Master[2016-09-26 17:00:37 +0500] [9978] [INFO] Reason: Worker failed to boot.[2016-09-26 17:00:39 +0500] [10067] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:00:39 +0500] [10067] [INFO] Listening at: http://127.0.0.1:8001 (10067)[2016-09-26 17:00:39 +0500] [10067] [INFO] Using worker: sync[2016-09-26 17:00:39 +0500] [10070] [INFO] Booting worker with pid: 10070[2016-09-26 17:00:39 +0500] [10071] [INFO] Booting worker with pid: 10071[2016-09-26 17:00:39 +0500] [10072] [INFO] Booting worker with pid: 10072
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:00:47 +0500] [10067] [INFO] Shutting down: Master[2016-09-26 17:00:47 +0500] [10067] [INFO] Reason: Worker failed to boot.[2016-09-26 17:00:49 +0500] [10156] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:00:49 +0500] [10156] [INFO] Listening at: http://127.0.0.1:8001 (10156)[2016-09-26 17:00:49 +0500] [10156] [INFO] Using worker: sync[2016-09-26 17:00:50 +0500] [10160] [INFO] Booting worker with pid: 10160[2016-09-26 17:00:50 +0500] [10161] [INFO] Booting worker with pid: 10161[2016-09-26 17:00:50 +0500] [10163] [INFO] Booting worker with pid: 10163
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:00:57 +0500] [10156] [INFO] Shutting down: Master[2016-09-26 17:00:57 +0500] [10156] [INFO] Reason: Worker failed to boot.[2016-09-26 17:00:59 +0500] [10246] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:00:59 +0500] [10246] [INFO] Listening at: http://127.0.0.1:8001 (10246)[2016-09-26 17:00:59 +0500] [10246] [INFO] Using worker: sync[2016-09-26 17:00:59 +0500] [10249] [INFO] Booting worker with pid: 10249[2016-09-26 17:00:59 +0500] [10250] [INFO] Booting worker with pid: 10250[2016-09-26 17:00:59 +0500] [10252] [INFO] Booting worker with pid: 10252
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 184, in runself.sleep()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleepready = select.select([self.PIPE[0]], [], [], 1.0)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>During handling of the above exception, another exception occurred:Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/bin/gunicorn", line 11, in <module>sys.exit(run())File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/wsgiapp.py", line 74, in runWSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in runsuper(Application, self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in runArbiter(self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in runself.halt(reason=inst.reason, exit_status=inst.exit_status)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 302, in haltself.stop()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stoptime.sleep(0.1)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>[2016-09-26 17:01:09 +0500] [10335] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:01:09 +0500] [10335] [INFO] Listening at: http://127.0.0.1:8001 (10335)[2016-09-26 17:01:09 +0500] [10335] [INFO] Using worker: sync[2016-09-26 17:01:09 +0500] [10338] [INFO] Booting worker with pid: 10338[2016-09-26 17:01:09 +0500] [10340] [INFO] Booting worker with pid: 10340[2016-09-26 17:01:09 +0500] [10341] [INFO] Booting worker with pid: 10341
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:01:17 +0500] [10335] [INFO] Shutting down: Master[2016-09-26 17:01:17 +0500] [10335] [INFO] Reason: Worker failed to boot.[2016-09-26 17:01:19 +0500] [10424] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:01:19 +0500] [10424] [INFO] Listening at: http://127.0.0.1:8001 (10424)[2016-09-26 17:01:19 +0500] [10424] [INFO] Using worker: sync[2016-09-26 17:01:19 +0500] [10428] [INFO] Booting worker with pid: 10428[2016-09-26 17:01:19 +0500] [10430] [INFO] Booting worker with pid: 10430[2016-09-26 17:01:19 +0500] [10431] [INFO] Booting worker with pid: 10431
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:01:25 +0500] [10424] [INFO] Shutting down: Master[2016-09-26 17:01:25 +0500] [10424] [INFO] Reason: Worker failed to boot.[2016-09-26 17:01:30 +0500] [10514] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:01:30 +0500] [10514] [INFO] Listening at: http://127.0.0.1:8001 (10514)[2016-09-26 17:01:30 +0500] [10514] [INFO] Using worker: sync[2016-09-26 17:01:30 +0500] [10517] [INFO] Booting worker with pid: 10517[2016-09-26 17:01:30 +0500] [10518] [INFO] Booting worker with pid: 10518[2016-09-26 17:01:30 +0500] [10519] [INFO] Booting worker with pid: 10519
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:01:38 +0500] [10514] [INFO] Shutting down: Master[2016-09-26 17:01:38 +0500] [10514] [INFO] Reason: Worker failed to boot.[2016-09-26 17:01:39 +0500] [10603] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:01:39 +0500] [10603] [INFO] Listening at: http://127.0.0.1:8001 (10603)[2016-09-26 17:01:39 +0500] [10603] [INFO] Using worker: sync[2016-09-26 17:01:39 +0500] [10606] [INFO] Booting worker with pid: 10606[2016-09-26 17:01:39 +0500] [10607] [INFO] Booting worker with pid: 10607[2016-09-26 17:01:39 +0500] [10608] [INFO] Booting worker with pid: 10608
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:01:47 +0500] [10603] [INFO] Shutting down: Master[2016-09-26 17:01:47 +0500] [10603] [INFO] Reason: Worker failed to boot.[2016-09-26 17:01:49 +0500] [10692] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:01:49 +0500] [10692] [INFO] Listening at: http://127.0.0.1:8001 (10692)[2016-09-26 17:01:49 +0500] [10692] [INFO] Using worker: sync[2016-09-26 17:01:49 +0500] [10696] [INFO] Booting worker with pid: 10696[2016-09-26 17:01:49 +0500] [10698] [INFO] Booting worker with pid: 10698[2016-09-26 17:01:49 +0500] [10699] [INFO] Booting worker with pid: 10699
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:01:56 +0500] [10692] [INFO] Shutting down: Master[2016-09-26 17:01:56 +0500] [10692] [INFO] Reason: Worker failed to boot.[2016-09-26 17:01:59 +0500] [10782] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:01:59 +0500] [10782] [INFO] Listening at: http://127.0.0.1:8001 (10782)[2016-09-26 17:01:59 +0500] [10782] [INFO] Using worker: sync[2016-09-26 17:01:59 +0500] [10785] [INFO] Booting worker with pid: 10785[2016-09-26 17:01:59 +0500] [10786] [INFO] Booting worker with pid: 10786[2016-09-26 17:01:59 +0500] [10787] [INFO] Booting worker with pid: 10787
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:02:06 +0500] [10782] [INFO] Shutting down: Master[2016-09-26 17:02:06 +0500] [10782] [INFO] Reason: Worker failed to boot.[2016-09-26 17:02:09 +0500] [10871] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:02:09 +0500] [10871] [INFO] Listening at: http://127.0.0.1:8001 (10871)[2016-09-26 17:02:09 +0500] [10871] [INFO] Using worker: sync[2016-09-26 17:02:09 +0500] [10874] [INFO] Booting worker with pid: 10874[2016-09-26 17:02:09 +0500] [10876] [INFO] Booting worker with pid: 10876[2016-09-26 17:02:09 +0500] [10877] [INFO] Booting worker with pid: 10877
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:02:17 +0500] [10871] [INFO] Shutting down: Master[2016-09-26 17:02:17 +0500] [10871] [INFO] Reason: Worker failed to boot.[2016-09-26 17:02:19 +0500] [10970] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:02:19 +0500] [10970] [INFO] Listening at: http://127.0.0.1:8001 (10970)[2016-09-26 17:02:19 +0500] [10970] [INFO] Using worker: sync[2016-09-26 17:02:19 +0500] [10974] [INFO] Booting worker with pid: 10974[2016-09-26 17:02:19 +0500] [10975] [INFO] Booting worker with pid: 10975[2016-09-26 17:02:19 +0500] [10976] [INFO] Booting worker with pid: 10976
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:02:29 +0500] [10970] [INFO] Shutting down: Master[2016-09-26 17:02:29 +0500] [10970] [INFO] Reason: Worker failed to boot.[2016-09-26 17:02:34 +0500] [11062] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:02:34 +0500] [11062] [INFO] Listening at: http://127.0.0.1:8001 (11062)[2016-09-26 17:02:34 +0500] [11062] [INFO] Using worker: sync[2016-09-26 17:02:34 +0500] [11065] [INFO] Booting worker with pid: 11065[2016-09-26 17:02:35 +0500] [11066] [INFO] Booting worker with pid: 11066[2016-09-26 17:02:35 +0500] [11067] [INFO] Booting worker with pid: 11067
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 184, in runself.sleep()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleepready = select.select([self.PIPE[0]], [], [], 1.0)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>During handling of the above exception, another exception occurred:Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/bin/gunicorn", line 11, in <module>sys.exit(run())File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/wsgiapp.py", line 74, in runWSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in runsuper(Application, self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in runArbiter(self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in runself.halt(reason=inst.reason, exit_status=inst.exit_status)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 302, in haltself.stop()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stoptime.sleep(0.1)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>[2016-09-26 17:02:55 +0500] [11159] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:02:55 +0500] [11159] [INFO] Listening at: http://127.0.0.1:8001 (11159)[2016-09-26 17:02:55 +0500] [11159] [INFO] Using worker: sync[2016-09-26 17:02:55 +0500] [11162] [INFO] Booting worker with pid: 11162[2016-09-26 17:02:55 +0500] [11163] [INFO] Booting worker with pid: 11163[2016-09-26 17:02:55 +0500] [11164] [INFO] Booting worker with pid: 11164
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 184, in runself.sleep()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleepready = select.select([self.PIPE[0]], [], [], 1.0)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>During handling of the above exception, another exception occurred:Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/bin/gunicorn", line 11, in <module>sys.exit(run())File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/wsgiapp.py", line 74, in runWSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in runsuper(Application, self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in runArbiter(self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in runself.halt(reason=inst.reason, exit_status=inst.exit_status)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 302, in haltself.stop()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stoptime.sleep(0.1)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>[2016-09-26 17:03:09 +0500] [11250] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:03:09 +0500] [11250] [INFO] Listening at: http://127.0.0.1:8001 (11250)[2016-09-26 17:03:09 +0500] [11250] [INFO] Using worker: sync[2016-09-26 17:03:09 +0500] [11253] [INFO] Booting worker with pid: 11253[2016-09-26 17:03:09 +0500] [11254] [INFO] Booting worker with pid: 11254[2016-09-26 17:03:10 +0500] [11256] [INFO] Booting worker with pid: 11256
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 184, in runself.sleep()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleepready = select.select([self.PIPE[0]], [], [], 1.0)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>During handling of the above exception, another exception occurred:Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/bin/gunicorn", line 11, in <module>sys.exit(run())File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/wsgiapp.py", line 74, in runWSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in runsuper(Application, self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in runArbiter(self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in runself.halt(reason=inst.reason, exit_status=inst.exit_status)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 302, in haltself.stop()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stoptime.sleep(0.1)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>[2016-09-26 17:03:24 +0500] [11345] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:03:24 +0500] [11345] [INFO] Listening at: http://127.0.0.1:8001 (11345)[2016-09-26 17:03:24 +0500] [11345] [INFO] Using worker: sync[2016-09-26 17:03:24 +0500] [11349] [INFO] Booting worker with pid: 11349[2016-09-26 17:03:24 +0500] [11351] [INFO] Booting worker with pid: 11351[2016-09-26 17:03:24 +0500] [11352] [INFO] Booting worker with pid: 11352
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 184, in runself.sleep()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleepready = select.select([self.PIPE[0]], [], [], 1.0)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>During handling of the above exception, another exception occurred:Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/bin/gunicorn", line 11, in <module>sys.exit(run())File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/wsgiapp.py", line 74, in runWSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in runsuper(Application, self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in runArbiter(self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in runself.halt(reason=inst.reason, exit_status=inst.exit_status)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 302, in haltself.stop()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stoptime.sleep(0.1)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>[2016-09-26 17:03:39 +0500] [11436] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:03:39 +0500] [11436] [INFO] Listening at: http://127.0.0.1:8001 (11436)[2016-09-26 17:03:39 +0500] [11436] [INFO] Using worker: sync[2016-09-26 17:03:39 +0500] [11439] [INFO] Booting worker with pid: 11439[2016-09-26 17:03:39 +0500] [11440] [INFO] Booting worker with pid: 11440[2016-09-26 17:03:40 +0500] [11441] [INFO] Booting worker with pid: 11441
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:03:54 +0500] [11436] [INFO] Shutting down: Master[2016-09-26 17:03:54 +0500] [11436] [INFO] Reason: Worker failed to boot.[2016-09-26 17:04:01 +0500] [11647] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:04:01 +0500] [11647] [INFO] Listening at: http://127.0.0.1:8001 (11647)[2016-09-26 17:04:01 +0500] [11647] [INFO] Using worker: sync[2016-09-26 17:04:01 +0500] [11669] [INFO] Booting worker with pid: 11669[2016-09-26 17:04:01 +0500] [11670] [INFO] Booting worker with pid: 11670[2016-09-26 17:04:01 +0500] [11672] [INFO] Booting worker with pid: 11672
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 184, in runself.sleep()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleepready = select.select([self.PIPE[0]], [], [], 1.0)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>During handling of the above exception, another exception occurred:Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/bin/gunicorn", line 11, in <module>sys.exit(run())File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/wsgiapp.py", line 74, in runWSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in runsuper(Application, self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in runArbiter(self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in runself.halt(reason=inst.reason, exit_status=inst.exit_status)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 302, in haltself.stop()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stoptime.sleep(0.1)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>[2016-09-26 17:04:30 +0500] [12173] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:04:30 +0500] [12173] [INFO] Listening at: http://127.0.0.1:8001 (12173)[2016-09-26 17:04:30 +0500] [12173] [INFO] Using worker: sync[2016-09-26 17:04:31 +0500] [12177] [INFO] Booting worker with pid: 12177[2016-09-26 17:04:30 +0500] [12176] [INFO] Booting worker with pid: 12176[2016-09-26 17:04:31 +0500] [12178] [INFO] Booting worker with pid: 12178
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:04:39 +0500] [12173] [INFO] Shutting down: Master[2016-09-26 17:04:39 +0500] [12173] [INFO] Reason: Worker failed to boot.[2016-09-26 17:04:44 +0500] [12263] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:04:44 +0500] [12263] [INFO] Listening at: http://127.0.0.1:8001 (12263)[2016-09-26 17:04:44 +0500] [12263] [INFO] Using worker: sync[2016-09-26 17:04:44 +0500] [12268] [INFO] Booting worker with pid: 12268[2016-09-26 17:04:44 +0500] [12269] [INFO] Booting worker with pid: 12269[2016-09-26 17:04:44 +0500] [12270] [INFO] Booting worker with pid: 12270
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:04:53 +0500] [12263] [INFO] Shutting down: Master[2016-09-26 17:04:53 +0500] [12263] [INFO] Reason: Worker failed to boot.[2016-09-26 17:04:54 +0500] [12353] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:04:54 +0500] [12353] [INFO] Listening at: http://127.0.0.1:8001 (12353)[2016-09-26 17:04:54 +0500] [12353] [INFO] Using worker: sync[2016-09-26 17:04:54 +0500] [12358] [INFO] Booting worker with pid: 12358[2016-09-26 17:04:54 +0500] [12359] [INFO] Booting worker with pid: 12359[2016-09-26 17:04:55 +0500] [12360] [INFO] Booting worker with pid: 12360
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:05:02 +0500] [12353] [INFO] Shutting down: Master[2016-09-26 17:05:02 +0500] [12353] [INFO] Reason: Worker failed to boot.[2016-09-26 17:05:04 +0500] [12442] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:05:04 +0500] [12442] [INFO] Listening at: http://127.0.0.1:8001 (12442)[2016-09-26 17:05:04 +0500] [12442] [INFO] Using worker: sync[2016-09-26 17:05:04 +0500] [12447] [INFO] Booting worker with pid: 12447[2016-09-26 17:05:04 +0500] [12448] [INFO] Booting worker with pid: 12448[2016-09-26 17:05:04 +0500] [12449] [INFO] Booting worker with pid: 12449
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:05:12 +0500] [12442] [INFO] Shutting down: Master[2016-09-26 17:05:12 +0500] [12442] [INFO] Reason: Worker failed to boot.[2016-09-26 17:05:14 +0500] [12531] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:05:14 +0500] [12531] [INFO] Listening at: http://127.0.0.1:8001 (12531)[2016-09-26 17:05:14 +0500] [12531] [INFO] Using worker: sync[2016-09-26 17:05:14 +0500] [12536] [INFO] Booting worker with pid: 12536[2016-09-26 17:05:14 +0500] [12538] [INFO] Booting worker with pid: 12538[2016-09-26 17:05:14 +0500] [12539] [INFO] Booting worker with pid: 12539
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:05:22 +0500] [12531] [INFO] Shutting down: Master[2016-09-26 17:05:22 +0500] [12531] [INFO] Reason: Worker failed to boot.[2016-09-26 17:05:24 +0500] [12621] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:05:24 +0500] [12621] [INFO] Listening at: http://127.0.0.1:8001 (12621)[2016-09-26 17:05:24 +0500] [12621] [INFO] Using worker: sync[2016-09-26 17:05:24 +0500] [12626] [INFO] Booting worker with pid: 12626[2016-09-26 17:05:24 +0500] [12627] [INFO] Booting worker with pid: 12627[2016-09-26 17:05:24 +0500] [12628] [INFO] Booting worker with pid: 12628
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:05:32 +0500] [12621] [INFO] Shutting down: Master[2016-09-26 17:05:32 +0500] [12621] [INFO] Reason: Worker failed to boot.[2016-09-26 17:05:34 +0500] [12710] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:05:34 +0500] [12710] [INFO] Listening at: http://127.0.0.1:8001 (12710)[2016-09-26 17:05:34 +0500] [12710] [INFO] Using worker: sync[2016-09-26 17:05:34 +0500] [12715] [INFO] Booting worker with pid: 12715[2016-09-26 17:05:34 +0500] [12716] [INFO] Booting worker with pid: 12716[2016-09-26 17:05:34 +0500] [12717] [INFO] Booting worker with pid: 12717
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:05:43 +0500] [12710] [INFO] Shutting down: Master[2016-09-26 17:05:43 +0500] [12710] [INFO] Reason: Worker failed to boot.[2016-09-26 17:05:44 +0500] [12799] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:05:45 +0500] [12799] [INFO] Listening at: http://127.0.0.1:8001 (12799)[2016-09-26 17:05:45 +0500] [12799] [INFO] Using worker: sync[2016-09-26 17:05:45 +0500] [12804] [INFO] Booting worker with pid: 12804[2016-09-26 17:05:45 +0500] [12806] [INFO] Booting worker with pid: 12806[2016-09-26 17:05:45 +0500] [12807] [INFO] Booting worker with pid: 12807
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:05:52 +0500] [12799] [INFO] Shutting down: Master[2016-09-26 17:05:52 +0500] [12799] [INFO] Reason: Worker failed to boot.[2016-09-26 17:05:54 +0500] [12889] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:05:54 +0500] [12889] [INFO] Listening at: http://127.0.0.1:8001 (12889)[2016-09-26 17:05:54 +0500] [12889] [INFO] Using worker: sync[2016-09-26 17:05:54 +0500] [12894] [INFO] Booting worker with pid: 12894[2016-09-26 17:05:54 +0500] [12895] [INFO] Booting worker with pid: 12895[2016-09-26 17:05:54 +0500] [12896] [INFO] Booting worker with pid: 12896
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:06:03 +0500] [12889] [INFO] Shutting down: Master[2016-09-26 17:06:03 +0500] [12889] [INFO] Reason: Worker failed to boot.[2016-09-26 17:06:04 +0500] [12978] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:06:04 +0500] [12978] [INFO] Listening at: http://127.0.0.1:8001 (12978)[2016-09-26 17:06:04 +0500] [12978] [INFO] Using worker: sync[2016-09-26 17:06:04 +0500] [12983] [INFO] Booting worker with pid: 12983[2016-09-26 17:06:04 +0500] [12984] [INFO] Booting worker with pid: 12984[2016-09-26 17:06:04 +0500] [12985] [INFO] Booting worker with pid: 12985
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:06:12 +0500] [12978] [INFO] Shutting down: Master[2016-09-26 17:06:12 +0500] [12978] [INFO] Reason: Worker failed to boot.[2016-09-26 17:06:14 +0500] [13067] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:06:14 +0500] [13067] [INFO] Listening at: http://127.0.0.1:8001 (13067)[2016-09-26 17:06:14 +0500] [13067] [INFO] Using worker: sync[2016-09-26 17:06:14 +0500] [13072] [INFO] Booting worker with pid: 13072[2016-09-26 17:06:14 +0500] [13073] [INFO] Booting worker with pid: 13073[2016-09-26 17:06:14 +0500] [13075] [INFO] Booting worker with pid: 13075
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:06:22 +0500] [13067] [INFO] Shutting down: Master[2016-09-26 17:06:22 +0500] [13067] [INFO] Reason: Worker failed to boot.[2016-09-26 17:06:24 +0500] [13157] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:06:24 +0500] [13157] [INFO] Listening at: http://127.0.0.1:8001 (13157)[2016-09-26 17:06:24 +0500] [13157] [INFO] Using worker: sync[2016-09-26 17:06:24 +0500] [13162] [INFO] Booting worker with pid: 13162[2016-09-26 17:06:24 +0500] [13163] [INFO] Booting worker with pid: 13163[2016-09-26 17:06:24 +0500] [13164] [INFO] Booting worker with pid: 13164
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:06:32 +0500] [13157] [INFO] Shutting down: Master[2016-09-26 17:06:32 +0500] [13157] [INFO] Reason: Worker failed to boot.[2016-09-26 17:06:34 +0500] [13246] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:06:34 +0500] [13246] [INFO] Listening at: http://127.0.0.1:8001 (13246)[2016-09-26 17:06:34 +0500] [13246] [INFO] Using worker: sync[2016-09-26 17:06:34 +0500] [13251] [INFO] Booting worker with pid: 13251[2016-09-26 17:06:34 +0500] [13252] [INFO] Booting worker with pid: 13252[2016-09-26 17:06:34 +0500] [13253] [INFO] Booting worker with pid: 13253
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 184, in runself.sleep()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleepready = select.select([self.PIPE[0]], [], [], 1.0)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>During handling of the above exception, another exception occurred:Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/bin/gunicorn", line 11, in <module>sys.exit(run())File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/wsgiapp.py", line 74, in runWSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in runsuper(Application, self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in runArbiter(self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in runself.halt(reason=inst.reason, exit_status=inst.exit_status)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 302, in haltself.stop()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stoptime.sleep(0.1)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>[2016-09-26 17:06:44 +0500] [13335] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:06:44 +0500] [13335] [INFO] Listening at: http://127.0.0.1:8001 (13335)[2016-09-26 17:06:44 +0500] [13335] [INFO] Using worker: sync[2016-09-26 17:06:44 +0500] [13340] [INFO] Booting worker with pid: 13340[2016-09-26 17:06:44 +0500] [13342] [INFO] Booting worker with pid: 13342[2016-09-26 17:06:44 +0500] [13343] [INFO] Booting worker with pid: 13343
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:06:52 +0500] [13335] [INFO] Shutting down: Master[2016-09-26 17:06:52 +0500] [13335] [INFO] Reason: Worker failed to boot.[2016-09-26 17:06:54 +0500] [13425] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:06:54 +0500] [13425] [INFO] Listening at: http://127.0.0.1:8001 (13425)[2016-09-26 17:06:54 +0500] [13425] [INFO] Using worker: sync[2016-09-26 17:06:54 +0500] [13430] [INFO] Booting worker with pid: 13430[2016-09-26 17:06:54 +0500] [13431] [INFO] Booting worker with pid: 13431[2016-09-26 17:06:54 +0500] [13432] [INFO] Booting worker with pid: 13432
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 184, in runself.sleep()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleepready = select.select([self.PIPE[0]], [], [], 1.0)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>During handling of the above exception, another exception occurred:Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/bin/gunicorn", line 11, in <module>sys.exit(run())File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/wsgiapp.py", line 74, in runWSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in runsuper(Application, self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in runArbiter(self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in runself.halt(reason=inst.reason, exit_status=inst.exit_status)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 302, in haltself.stop()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stoptime.sleep(0.1)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>[2016-09-26 17:07:04 +0500] [13514] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:07:04 +0500] [13514] [INFO] Listening at: http://127.0.0.1:8001 (13514)[2016-09-26 17:07:04 +0500] [13514] [INFO] Using worker: sync[2016-09-26 17:07:04 +0500] [13519] [INFO] Booting worker with pid: 13519[2016-09-26 17:07:04 +0500] [13520] [INFO] Booting worker with pid: 13520[2016-09-26 17:07:04 +0500] [13523] [INFO] Booting worker with pid: 13523
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:07:13 +0500] [13514] [INFO] Shutting down: Master[2016-09-26 17:07:13 +0500] [13514] [INFO] Reason: Worker failed to boot.[2016-09-26 17:07:14 +0500] [13605] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:07:14 +0500] [13605] [INFO] Listening at: http://127.0.0.1:8001 (13605)[2016-09-26 17:07:14 +0500] [13605] [INFO] Using worker: sync[2016-09-26 17:07:14 +0500] [13610] [INFO] Booting worker with pid: 13610[2016-09-26 17:07:14 +0500] [13611] [INFO] Booting worker with pid: 13611[2016-09-26 17:07:14 +0500] [13613] [INFO] Booting worker with pid: 13613
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:07:22 +0500] [13605] [INFO] Shutting down: Master[2016-09-26 17:07:22 +0500] [13605] [INFO] Reason: Worker failed to boot.[2016-09-26 17:07:24 +0500] [13695] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:07:24 +0500] [13695] [INFO] Listening at: http://127.0.0.1:8001 (13695)[2016-09-26 17:07:24 +0500] [13695] [INFO] Using worker: sync[2016-09-26 17:07:24 +0500] [13700] [INFO] Booting worker with pid: 13700[2016-09-26 17:07:24 +0500] [13701] [INFO] Booting worker with pid: 13701[2016-09-26 17:07:24 +0500] [13703] [INFO] Booting worker with pid: 13703
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:07:31 +0500] [13695] [INFO] Shutting down: Master[2016-09-26 17:07:31 +0500] [13695] [INFO] Reason: Worker failed to boot.[2016-09-26 17:07:34 +0500] [13784] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:07:34 +0500] [13784] [INFO] Listening at: http://127.0.0.1:8001 (13784)[2016-09-26 17:07:34 +0500] [13784] [INFO] Using worker: sync[2016-09-26 17:07:34 +0500] [13787] [INFO] Booting worker with pid: 13787[2016-09-26 17:07:34 +0500] [13788] [INFO] Booting worker with pid: 13788[2016-09-26 17:07:34 +0500] [13789] [INFO] Booting worker with pid: 13789
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:07:42 +0500] [13784] [INFO] Shutting down: Master[2016-09-26 17:07:42 +0500] [13784] [INFO] Reason: Worker failed to boot.[2016-09-26 17:07:45 +0500] [13873] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:07:45 +0500] [13873] [INFO] Listening at: http://127.0.0.1:8001 (13873)[2016-09-26 17:07:45 +0500] [13873] [INFO] Using worker: sync[2016-09-26 17:07:45 +0500] [13878] [INFO] Booting worker with pid: 13878[2016-09-26 17:07:45 +0500] [13879] [INFO] Booting worker with pid: 13879[2016-09-26 17:07:45 +0500] [13880] [INFO] Booting worker with pid: 13880
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:07:53 +0500] [13873] [INFO] Shutting down: Master[2016-09-26 17:07:53 +0500] [13873] [INFO] Reason: Worker failed to boot.[2016-09-26 17:07:54 +0500] [13963] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:07:54 +0500] [13963] [INFO] Listening at: http://127.0.0.1:8001 (13963)[2016-09-26 17:07:54 +0500] [13963] [INFO] Using worker: sync[2016-09-26 17:07:54 +0500] [13968] [INFO] Booting worker with pid: 13968[2016-09-26 17:07:54 +0500] [13969] [INFO] Booting worker with pid: 13969[2016-09-26 17:07:55 +0500] [13970] [INFO] Booting worker with pid: 13970
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:08:02 +0500] [13963] [INFO] Shutting down: Master[2016-09-26 17:08:02 +0500] [13963] [INFO] Reason: Worker failed to boot.[2016-09-26 17:08:04 +0500] [14052] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:08:04 +0500] [14052] [INFO] Listening at: http://127.0.0.1:8001 (14052)[2016-09-26 17:08:04 +0500] [14052] [INFO] Using worker: sync[2016-09-26 17:08:04 +0500] [14057] [INFO] Booting worker with pid: 14057[2016-09-26 17:08:05 +0500] [14059] [INFO] Booting worker with pid: 14059[2016-09-26 17:08:05 +0500] [14060] [INFO] Booting worker with pid: 14060
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:08:13 +0500] [14052] [INFO] Shutting down: Master[2016-09-26 17:08:13 +0500] [14052] [INFO] Reason: Worker failed to boot.[2016-09-26 17:08:14 +0500] [14141] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:08:14 +0500] [14141] [INFO] Listening at: http://127.0.0.1:8001 (14141)[2016-09-26 17:08:14 +0500] [14141] [INFO] Using worker: sync[2016-09-26 17:08:14 +0500] [14146] [INFO] Booting worker with pid: 14146[2016-09-26 17:08:14 +0500] [14148] [INFO] Booting worker with pid: 14148[2016-09-26 17:08:14 +0500] [14149] [INFO] Booting worker with pid: 14149
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:08:22 +0500] [14141] [INFO] Shutting down: Master[2016-09-26 17:08:22 +0500] [14141] [INFO] Reason: Worker failed to boot.[2016-09-26 17:08:24 +0500] [14231] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:08:24 +0500] [14231] [INFO] Listening at: http://127.0.0.1:8001 (14231)[2016-09-26 17:08:24 +0500] [14231] [INFO] Using worker: sync[2016-09-26 17:08:24 +0500] [14234] [INFO] Booting worker with pid: 14234[2016-09-26 17:08:24 +0500] [14238] [INFO] Booting worker with pid: 14238[2016-09-26 17:08:24 +0500] [14239] [INFO] Booting worker with pid: 14239
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:08:32 +0500] [14231] [INFO] Shutting down: Master[2016-09-26 17:08:32 +0500] [14231] [INFO] Reason: Worker failed to boot.[2016-09-26 17:08:34 +0500] [14320] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:08:34 +0500] [14320] [INFO] Listening at: http://127.0.0.1:8001 (14320)[2016-09-26 17:08:34 +0500] [14320] [INFO] Using worker: sync[2016-09-26 17:08:34 +0500] [14325] [INFO] Booting worker with pid: 14325[2016-09-26 17:08:35 +0500] [14326] [INFO] Booting worker with pid: 14326[2016-09-26 17:08:35 +0500] [14327] [INFO] Booting worker with pid: 14327
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:08:42 +0500] [14320] [INFO] Shutting down: Master[2016-09-26 17:08:42 +0500] [14320] [INFO] Reason: Worker failed to boot.[2016-09-26 17:08:44 +0500] [14409] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:08:44 +0500] [14409] [INFO] Listening at: http://127.0.0.1:8001 (14409)[2016-09-26 17:08:44 +0500] [14409] [INFO] Using worker: sync[2016-09-26 17:08:44 +0500] [14412] [INFO] Booting worker with pid: 14412[2016-09-26 17:08:44 +0500] [14416] [INFO] Booting worker with pid: 14416[2016-09-26 17:08:45 +0500] [14417] [INFO] Booting worker with pid: 14417
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:08:52 +0500] [14409] [INFO] Shutting down: Master[2016-09-26 17:08:52 +0500] [14409] [INFO] Reason: Worker failed to boot.[2016-09-26 17:08:54 +0500] [14499] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:08:54 +0500] [14499] [INFO] Listening at: http://127.0.0.1:8001 (14499)[2016-09-26 17:08:54 +0500] [14499] [INFO] Using worker: sync[2016-09-26 17:08:54 +0500] [14504] [INFO] Booting worker with pid: 14504[2016-09-26 17:08:54 +0500] [14505] [INFO] Booting worker with pid: 14505[2016-09-26 17:08:54 +0500] [14506] [INFO] Booting worker with pid: 14506
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:09:01 +0500] [14499] [INFO] Shutting down: Master[2016-09-26 17:09:01 +0500] [14499] [INFO] Reason: Worker failed to boot.[2016-09-26 17:09:04 +0500] [14588] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:09:04 +0500] [14588] [INFO] Listening at: http://127.0.0.1:8001 (14588)[2016-09-26 17:09:04 +0500] [14588] [INFO] Using worker: sync[2016-09-26 17:09:04 +0500] [14591] [INFO] Booting worker with pid: 14591[2016-09-26 17:09:04 +0500] [14592] [INFO] Booting worker with pid: 14592[2016-09-26 17:09:04 +0500] [14594] [INFO] Booting worker with pid: 14594
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 184, in runself.sleep()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleepready = select.select([self.PIPE[0]], [], [], 1.0)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>During handling of the above exception, another exception occurred:Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/bin/gunicorn", line 11, in <module>sys.exit(run())File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/wsgiapp.py", line 74, in runWSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in runsuper(Application, self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in runArbiter(self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in runself.halt(reason=inst.reason, exit_status=inst.exit_status)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 302, in haltself.stop()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stoptime.sleep(0.1)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>[2016-09-26 17:09:14 +0500] [14677] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:09:14 +0500] [14677] [INFO] Listening at: http://127.0.0.1:8001 (14677)[2016-09-26 17:09:14 +0500] [14677] [INFO] Using worker: sync[2016-09-26 17:09:14 +0500] [14682] [INFO] Booting worker with pid: 14682[2016-09-26 17:09:15 +0500] [14684] [INFO] Booting worker with pid: 14684[2016-09-26 17:09:15 +0500] [14685] [INFO] Booting worker with pid: 14685
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:09:23 +0500] [14677] [INFO] Shutting down: Master[2016-09-26 17:09:23 +0500] [14677] [INFO] Reason: Worker failed to boot.[2016-09-26 17:09:29 +0500] [14769] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:09:29 +0500] [14769] [INFO] Listening at: http://127.0.0.1:8001 (14769)[2016-09-26 17:09:29 +0500] [14769] [INFO] Using worker: sync[2016-09-26 17:09:29 +0500] [14772] [INFO] Booting worker with pid: 14772[2016-09-26 17:09:29 +0500] [14773] [INFO] Booting worker with pid: 14773[2016-09-26 17:09:29 +0500] [14775] [INFO] Booting worker with pid: 14775
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:09:37 +0500] [14769] [INFO] Shutting down: Master[2016-09-26 17:09:37 +0500] [14769] [INFO] Reason: Worker failed to boot.[2016-09-26 17:09:40 +0500] [14858] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:09:40 +0500] [14858] [INFO] Listening at: http://127.0.0.1:8001 (14858)[2016-09-26 17:09:40 +0500] [14858] [INFO] Using worker: sync[2016-09-26 17:09:40 +0500] [14861] [INFO] Booting worker with pid: 14861[2016-09-26 17:09:40 +0500] [14862] [INFO] Booting worker with pid: 14862[2016-09-26 17:09:40 +0500] [14863] [INFO] Booting worker with pid: 14863
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:09:48 +0500] [14858] [INFO] Shutting down: Master[2016-09-26 17:09:48 +0500] [14858] [INFO] Reason: Worker failed to boot.[2016-09-26 17:09:49 +0500] [14947] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:09:49 +0500] [14947] [INFO] Listening at: http://127.0.0.1:8001 (14947)[2016-09-26 17:09:49 +0500] [14947] [INFO] Using worker: sync[2016-09-26 17:09:49 +0500] [14950] [INFO] Booting worker with pid: 14950[2016-09-26 17:09:49 +0500] [14952] [INFO] Booting worker with pid: 14952[2016-09-26 17:09:49 +0500] [14953] [INFO] Booting worker with pid: 14953
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:09:57 +0500] [14947] [INFO] Shutting down: Master[2016-09-26 17:09:57 +0500] [14947] [INFO] Reason: Worker failed to boot.[2016-09-26 17:09:59 +0500] [15037] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:09:59 +0500] [15037] [INFO] Listening at: http://127.0.0.1:8001 (15037)[2016-09-26 17:09:59 +0500] [15037] [INFO] Using worker: sync[2016-09-26 17:09:59 +0500] [15040] [INFO] Booting worker with pid: 15040[2016-09-26 17:09:59 +0500] [15041] [INFO] Booting worker with pid: 15041[2016-09-26 17:09:59 +0500] [15042] [INFO] Booting worker with pid: 15042
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:10:08 +0500] [15037] [INFO] Shutting down: Master[2016-09-26 17:10:08 +0500] [15037] [INFO] Reason: Worker failed to boot.[2016-09-26 17:10:09 +0500] [15126] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:10:09 +0500] [15126] [INFO] Listening at: http://127.0.0.1:8001 (15126)[2016-09-26 17:10:09 +0500] [15126] [INFO] Using worker: sync[2016-09-26 17:10:09 +0500] [15129] [INFO] Booting worker with pid: 15129[2016-09-26 17:10:09 +0500] [15130] [INFO] Booting worker with pid: 15130[2016-09-26 17:10:09 +0500] [15131] [INFO] Booting worker with pid: 15131
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:10:17 +0500] [15126] [INFO] Shutting down: Master[2016-09-26 17:10:17 +0500] [15126] [INFO] Reason: Worker failed to boot.[2016-09-26 17:10:19 +0500] [15215] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:10:19 +0500] [15215] [INFO] Listening at: http://127.0.0.1:8001 (15215)[2016-09-26 17:10:19 +0500] [15215] [INFO] Using worker: sync[2016-09-26 17:10:19 +0500] [15218] [INFO] Booting worker with pid: 15218[2016-09-26 17:10:19 +0500] [15219] [INFO] Booting worker with pid: 15219[2016-09-26 17:10:19 +0500] [15221] [INFO] Booting worker with pid: 15221
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 184, in runself.sleep()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleepready = select.select([self.PIPE[0]], [], [], 1.0)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>During handling of the above exception, another exception occurred:Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/bin/gunicorn", line 11, in <module>sys.exit(run())File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/wsgiapp.py", line 74, in runWSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in runsuper(Application, self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in runArbiter(self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in runself.halt(reason=inst.reason, exit_status=inst.exit_status)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 302, in haltself.stop()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stoptime.sleep(0.1)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>[2016-09-26 17:10:29 +0500] [15305] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:10:29 +0500] [15305] [INFO] Listening at: http://127.0.0.1:8001 (15305)[2016-09-26 17:10:29 +0500] [15305] [INFO] Using worker: sync[2016-09-26 17:10:29 +0500] [15308] [INFO] Booting worker with pid: 15308[2016-09-26 17:10:29 +0500] [15309] [INFO] Booting worker with pid: 15309[2016-09-26 17:10:30 +0500] [15311] [INFO] Booting worker with pid: 15311
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:10:37 +0500] [15305] [INFO] Shutting down: Master[2016-09-26 17:10:37 +0500] [15305] [INFO] Reason: Worker failed to boot.[2016-09-26 17:10:39 +0500] [15394] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:10:39 +0500] [15394] [INFO] Listening at: http://127.0.0.1:8001 (15394)[2016-09-26 17:10:39 +0500] [15394] [INFO] Using worker: sync[2016-09-26 17:10:39 +0500] [15397] [INFO] Booting worker with pid: 15397[2016-09-26 17:10:39 +0500] [15398] [INFO] Booting worker with pid: 15398[2016-09-26 17:10:39 +0500] [15400] [INFO] Booting worker with pid: 15400
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:10:48 +0500] [15394] [INFO] Shutting down: Master[2016-09-26 17:10:48 +0500] [15394] [INFO] Reason: Worker failed to boot.[2016-09-26 17:10:50 +0500] [15483] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:10:50 +0500] [15483] [INFO] Listening at: http://127.0.0.1:8001 (15483)[2016-09-26 17:10:50 +0500] [15483] [INFO] Using worker: sync[2016-09-26 17:10:50 +0500] [15487] [INFO] Booting worker with pid: 15487[2016-09-26 17:10:50 +0500] [15488] [INFO] Booting worker with pid: 15488[2016-09-26 17:10:50 +0500] [15489] [INFO] Booting worker with pid: 15489
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 184, in runself.sleep()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleepready = select.select([self.PIPE[0]], [], [], 1.0)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>During handling of the above exception, another exception occurred:Traceback (most recent call last):File "/home/taiga/.virtualenvs/taiga/bin/gunicorn", line 11, in <module>sys.exit(run())File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/wsgiapp.py", line 74, in runWSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in runsuper(Application, self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in runArbiter(self).run()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in runself.halt(reason=inst.reason, exit_status=inst.exit_status)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 302, in haltself.stop()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stoptime.sleep(0.1)File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chldself.reap_workers()File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workersraise HaltServer(reason, self.WORKER_BOOT_ERROR)gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>[2016-09-26 17:10:59 +0500] [15573] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:10:59 +0500] [15573] [INFO] Listening at: http://127.0.0.1:8001 (15573)[2016-09-26 17:10:59 +0500] [15573] [INFO] Using worker: sync[2016-09-26 17:10:59 +0500] [15576] [INFO] Booting worker with pid: 15576[2016-09-26 17:10:59 +0500] [15578] [INFO] Booting worker with pid: 15578[2016-09-26 17:10:59 +0500] [15579] [INFO] Booting worker with pid: 15579
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:11:07 +0500] [15573] [INFO] Shutting down: Master[2016-09-26 17:11:07 +0500] [15573] [INFO] Reason: Worker failed to boot.[2016-09-26 17:11:10 +0500] [15662] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:11:10 +0500] [15662] [INFO] Listening at: http://127.0.0.1:8001 (15662)[2016-09-26 17:11:10 +0500] [15662] [INFO] Using worker: sync[2016-09-26 17:11:10 +0500] [15665] [INFO] Booting worker with pid: 15665[2016-09-26 17:11:10 +0500] [15666] [INFO] Booting worker with pid: 15666[2016-09-26 17:11:10 +0500] [15667] [INFO] Booting worker with pid: 15667
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:11:18 +0500] [15662] [INFO] Shutting down: Master[2016-09-26 17:11:18 +0500] [15662] [INFO] Reason: Worker failed to boot.[2016-09-26 17:11:24 +0500] [15752] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:11:24 +0500] [15752] [INFO] Listening at: http://127.0.0.1:8001 (15752)[2016-09-26 17:11:24 +0500] [15752] [INFO] Using worker: sync[2016-09-26 17:11:24 +0500] [15755] [INFO] Booting worker with pid: 15755[2016-09-26 17:11:24 +0500] [15756] [INFO] Booting worker with pid: 15756[2016-09-26 17:11:24 +0500] [15757] [INFO] Booting worker with pid: 15757
Trying import local.py settings...Trying import local.py settings...
Trying import local.py settings...[2016-09-26 17:11:31 +0500] [15752] [INFO] Shutting down: Master[2016-09-26 17:11:31 +0500] [15752] [INFO] Reason: Worker failed to boot.[2016-09-26 17:11:35 +0500] [15841] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:11:35 +0500] [15841] [INFO] Listening at: http://127.0.0.1:8001 (15841)[2016-09-26 17:11:35 +0500] [15841] [INFO] Using worker: sync[2016-09-26 17:11:35 +0500] [15844] [INFO] Booting worker with pid: 15844[2016-09-26 17:11:35 +0500] [15845] [INFO] Booting worker with pid: 15845[2016-09-26 17:11:35 +0500] [15847] [INFO] Booting worker with pid: 15847
Trying import local.py settings...Trying import local.py settings...
...Trying import local.py settings...[2016-09-26 17:11:42 +0500] [15841] [INFO] Shutting down: Master[2016-09-26 17:11:42 +0500] [15841] [INFO] Reason: Worker failed to boot.[2016-09-26 17:11:45 +0500] [15930] [INFO] Starting gunicorn 19.4.5[2016-09-26 17:11:45 +0500] [15930] [INFO] Listening at: http://127.0.0.1:8001 (15930)[2016-09-26 17:11:45 +0500] [15930] [INFO] Using worker: sync[2016-09-26 17:11:45 +0500] [15933] [INFO] Booting worker with pid: 15933[2016-09-26 17:11:45 +0500] [15934] [INFO] Booting wor
(...)
[watcher:taiga]working_dir = /home/taiga/taiga-backcmd = gunicornargs = -w 3 -t 60 --pythonpath=. -b 127.0.0.1:8001 taiga.wsgi
So in /home/taiga/taiga-back after enabe the virtualenv taiga the command should be(...)
curl http://127.0.0.1:8001/api/v1
<h1>Not Found</h1><p>The requested URL /api/v1 was not found on this server.</p>server {
listen 80 default_server;
server_name _;
large_client_header_buffers 4 32k;
client_max_body_size 50M;
charset utf-8;
access_log /home/ubuntu/logs/nginx.access.log;
error_log /home/ubuntu/logs/nginx.error.log;
# Frontend
location / {
root /home/ubuntu/taiga-front-dist/dist/;
try_files $uri $uri/ /index.html;
}
# Backend
location /api {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Scheme $scheme;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:8001/api;
proxy_redirect off;
}
# Django admin access (/admin/)
location /admin {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Scheme $scheme;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:8001$request_uri;
proxy_redirect off;
}
# Static files
location /static {
alias /home/ubuntu/taiga-back/static;
}
# Media files
location /media {
alias /home/ubuntu/taiga-back/media;
}
}
...