server failed to connect

212 views
Skip to first unread message

fbato...@gmail.com

unread,
Sep 29, 2016, 3:14:53 PM9/29/16
to taigaio
i have done with with aLL my taiga setup production commands  http://taigaio.github.io/taiga-doc/dist/setup-production.html
but my http://192.168.17.149/ is not working server is failed so pleaaseeeeeeeee help me 

Making HTTP connection to 192.168.17.149:8000
Alert!: Unable to connect to remote host.

lynx: Can't access startfile http://192.168.17.149:8000/api/v1/

David Barragán

unread,
Sep 29, 2016, 3:51:29 PM9/29/16
to fbato...@gmail.com, taigaio
Sorry, but only with the message of your browser we can't know what could be happen. Is there some error message in the log file? What say circusctrl (circusctrl status) about the status of the different process? What is in your circus.ini? and in your locale.py? What happend if you run the server manually (python manage.py runserver)?

Regards

--
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.



--

---

 
David Barragán Merino  
Engineer

www.kaleidos.net/FFF8E7

David Barragán

unread,
Sep 30, 2016, 4:35:09 AM9/30/16
to fatima batool, taigaio
You are runing taiga-back in 8001 so you should to access to this port and not to 8000.

> args = -w 3 -t 60 --pythonpath=. -b 127.0.0.1:8001 taiga.wsgi


And please, reply to all and not only to me.


Regards


On Fri, Sep 30, 2016 at 10:18 AM, fatima batool <fbato...@gmail.com> wrote:
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 = True
from .common import *

SITES["front"]["scheme"] = "http"
SITES["front"]["domain"] = "192.168.17.149"


DEBUG = True
TEMPLATE_DEBUG = True
PUBLIC_REGISTER_ENABLED = True

DEFAULT_FROM_EMAIL = "no-r...@example.com"
SERVER_EMAIL = DEFAULT_FROM_EMAIL
from .celery import *

BROKER_URL = 'amqp://guest:gu...@192.168.17.149:5672//'
CELERY_RESULT_BACKEND = 'redis://192.168.17.149:6379/0'
CELERY_ENABLED = True
EVENTS_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 = 5
endpoint = tcp://127.0.0.1:5555
pubsub_endpoint = tcp://127.0.0.1:5556
statsd = true

[watcher:taiga]
working_dir = /home/taiga/taiga-back
cmd = gunicorn
args = -w 3 -t 60 --pythonpath=. -b 127.0.0.1:8001 taiga.wsgi
uid = taiga
numprocesses = 1
autostart = true
send_hup = true
stdout_stream.class = FileStream
stdout_stream.filename = /home/taiga/logs/gunicorn.stdout.log
stdout_stream.max_bytes = 10485760
stdout_stream.backup_count = 4
stderr_stream.class = FileStream
stderr_stream.filename = /home/taiga/logs/gunicorn.stderr.log
stderr_stream.max_bytes = 10485760
stderr_stream.backup_count = 4

[env:taiga]
PATH = /home/taiga/.virtualenvs/taiga/bin:$PATH
TERM=rxvt-256color
SHELL=/bin/bash
USER=taiga
LANG=en_US.UTF-8
HOME=/home/taiga
PYTHONPATH=/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages
[watcher:taiga-celery]
working_dir = /home/taiga/taiga-back
cmd = celery
args = -A taiga worker -c 4
uid = taiga
numprocesses = 1
autostart = true
send_hup = true
stdout_stream.class = FileStream
stdout_stream.filename = /home/taiga/logs/celery.stdout.log
stdout_stream.max_bytes = 10485760
stdout_stream.backup_count = 4
stderr_stream.class = FileStream
stderr_stream.filename = /home/taiga/logs/celery.stderr.log
stderr_stream.max_bytes = 10485760
stderr_stream.backup_count = 4

[env:taiga-celery]
PATH = /home/taiga/.virtualenvs/taiga/bin:$PATH
TERM=rxvt-256color
SHELL=/bin/bash
USER=taiga
LANG=en_US.UTF-8
HOME=/home/taiga
PYTHONPATH=/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages
[watcher:taiga-events]
working_dir = /home/taiga/taiga-events
cmd = /usr/local/bin/coffee
args = index.coffee
uid = taiga
numprocesses = 1
autostart = true
send_hup = true
stdout_stream.class = FileStream
stdout_stream.filename = /home/taiga/logs/taigaevents.stdout.log
stdout_stream.max_bytes = 10485760
stdout_stream.backup_count = 12
stderr_stream.class = FileStream
stderr_stream.filename = /home/taiga/logs/taigaevents.stderr.log
stderr_stream.max_bytes = 10485760
stderr_stream.backup_count = 12


here is a result of 
(taiga)taiga@example:~$ python manage.py runserver
python: can't open file 'manage.py': [Errno 2] No such file or directory



David Barragán

unread,
Sep 30, 2016, 4:41:10 AM9/30/16
to fatima batool, tai...@googlegroups.com
Ok, so the server is well configured. 

You can delete in local.py some lines, but it is not mandatory.

ADMIN_MEDIA_PREFIX = "http://192.168.17.149/static/admin/"
(...)
TEMPLATE_DEBUG = True

On Fri, Sep 30, 2016 at 10:36 AM, fatima batool <fbato...@gmail.com> wrote:
(taiga)taiga@example:~$ cd taiga-back
(taiga)taiga@example:~/taiga-back$ python manage.py runserver
Trying 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:15
Django version 1.9.2, using settings 'settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.

fatima batool

unread,
Sep 30, 2016, 4:51:05 AM9/30/16
to David Barragán, tai...@googlegroups.com
now its a result
(taiga)taiga@example:~/taiga-back$ python manage.py runserver
Trying import local.py settings...
Trying import local.py settings...
Performing system checks...

System check identified no issues (0 silenced).
September 30, 2016 - 08:49:54
Django version 1.9.2, using settings 'settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.


On Fri, Sep 30, 2016 at 1:48 PM, fatima batool <fbato...@gmail.com> wrote:
ok i have delete these line 

fatima batool

unread,
Sep 30, 2016, 4:52:26 AM9/30/16
to David Barragán, tai...@googlegroups.com
again the same cant access to host 
(taiga)taiga@example:~$ lynx http://192.168.17.149:8001/api/v1/

Making HTTP connection to 192.168.17.149:8001
Alert!: Unable to connect to remote host.

lynx: Can't access startfile http://192.168.17.149:8001/api/v1/

David Barragán

unread,
Sep 30, 2016, 4:59:05 AM9/30/16
to fatima batool, tai...@googlegroups.com
what is the output of "circusctrl status"?

fatima batool

unread,
Sep 30, 2016, 5:03:14 AM9/30/16
to David Barragán, tai...@googlegroups.com
taiga@example:~$ circusctrl status
circusctrl: command not found


David Barragán

unread,
Sep 30, 2016, 5:10:45 AM9/30/16
to fatima batool, tai...@googlegroups.com
Sorry, my fault. the correct command is

circusctl status

fatima batool

unread,
Sep 30, 2016, 5:12:30 AM9/30/16
to David Barragán, tai...@googlegroups.com
taiga@example:~$ circusctl status
circusd-stats: active
taiga: active
taiga-celery: active
taiga-events: active

fatima batool

unread,
Sep 30, 2016, 5:31:11 AM9/30/16
to David Barragán, tai...@googlegroups.com
here is my etc/nginx/stes-available/taiga
server {
    listen 80 default_server;
    server_name _;

    large_client_header_buffers 4 32k;
    client_max_body_size 50M;
    charset utf-8;

    access_log /home/taiga/logs/nginx.access.log;
    error_log /home/taiga/logs/nginx.error.log;

    # Frontend
    location / {
        root /home/taiga/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/taiga/taiga-back/static;
    }

    # Media files
    location /media {
        alias /home/taiga/taiga-back/media;
    }
}

David Barragán

unread,
Sep 30, 2016, 6:04:21 AM9/30/16
to fatima batool, tai...@googlegroups.com
your are making a proxy pass with nginx

What do you see if you visit 

http://192.168.17.149/
http://192.168.17.149/api/v1/projects/
http://192.168.17.149/admin/

On Fri, Sep 30, 2016 at 11:31 AM, fatima batool <fbato...@gmail.com> wrote:
please help me 

fatima batool

unread,
Sep 30, 2016, 6:13:04 AM9/30/16
to David Barragán, tai...@googlegroups.com
taiga@example:~$ lynx http://192.168.17.149/

Looking up 192.168.17.149
Making HTTP connection to 192.168.17.149
Alert!: Unable to connect to remote host.

lynx: Can't access startfile http://192.168.17.149/

Looking up 192.168.17.149
Making HTTP connection to 192.168.17.149
Alert!: Unable to connect to remote host.

lynx: Can't access startfile http://192.168.17.149/api/v1/projects/
taiga@example:~$ lynx http://192.168.17.149/admin/

Looking up 192.168.17.149
Making HTTP connection to 192.168.17.149
Alert!: Unable to connect to remote host.

lynx: Can't access startfile http://192.168.17.149/admin/


David Barragán

unread,
Sep 30, 2016, 6:20:10 AM9/30/16
to fatima batool, tai...@googlegroups.com
ifconfig

fatima batool

unread,
Sep 30, 2016, 6:48:38 AM9/30/16
to David Barragán, tai...@googlegroups.com
taiga@example:~$ ifconfig
eth0      Link encap:Ethernet  HWaddr 00:0c:29:ab:6f:23
          inet addr:192.168.17.149  Bcast:192.168.17.255  Mask:255.255.255.0
          inet6 addr: fe80::20c:29ff:feab:6f23/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:2601 errors:0 dropped:0 overruns:0 frame:0
          TX packets:2190 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:276432 (276.4 KB)  TX bytes:398433 (398.4 KB)

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:26624 errors:0 dropped:0 overruns:0 frame:0
          TX packets:26624 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:4302467 (4.3 MB)  TX bytes:4302467 (4.3 MB)

David Barragán

unread,
Sep 30, 2016, 7:09:35 AM9/30/16
to fatima batool, tai...@googlegroups.com
Sorry but I can find nothing wrong. Is there any message in /home/taiga/logs/gunicorn.stderr.log or /home/taiga/logs/gunicorn.stdout.log?

You can try to setup Taiga again with the taiga-scripts instead.

fatima batool

unread,
Sep 30, 2016, 7:50:49 AM9/30/16
to David Barragán, tai...@googlegroups.com

fatima batool

unread,
Sep 30, 2016, 8:01:24 AM9/30/16
to David Barragán, tai...@googlegroups.com

fatima batool

unread,
Sep 30, 2016, 8:07:19 AM9/30/16
to David Barragán, tai...@googlegroups.com
ok i have delete these line 

fatima batool

unread,
Sep 30, 2016, 8:07:19 AM9/30/16
to tai...@googlegroups.com
---------- Forwarded message ----------
From: fatima batool <fbato...@gmail.com>
Date: Fri, Sep 30, 2016 at 1:36 PM
Subject: Re: server failed to connect
To: David Barragán <david.b...@kaleidos.net>


(taiga)taiga@example:~$ cd taiga-back
(taiga)taiga@example:~/taiga-back$ python manage.py runserver
Trying 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:15
Django version 1.9.2, using settings 'settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.

On Fri, Sep 30, 2016 at 1:34 PM, David Barragán <david.b...@kaleidos.net> wrote:

David Barragán

unread,
Sep 30, 2016, 8:07:21 AM9/30/16
to fatima batool, tai...@googlegroups.com

fatima batool

unread,
Sep 30, 2016, 8:13:04 AM9/30/16
to David Barragán, tai...@googlegroups.com

Suggest me some solution please


On Sep 30, 2016 5:07 PM, "David Barragán" <david.b...@kaleidos.net> wrote:
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 happen

On Fri, Sep 30, 2016 at 2:01 PM, fatima batool <fbato...@gmail.com> wrote:
my gunicorn.stdout.logis empty

On 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 run
    self.sleep()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleep
    ready = select.select([self.PIPE[0]], [], [], 1.0)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in run
    super(Application, self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in run
    Arbiter(self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in run
    self.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 halt
    self.stop()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stop
    time.sleep(0.1)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    self.sleep()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleep
    ready = select.select([self.PIPE[0]], [], [], 1.0)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in run
    super(Application, self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in run
    Arbiter(self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in run
    self.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 halt
    self.stop()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stop
    time.sleep(0.1)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    self.sleep()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleep
    ready = select.select([self.PIPE[0]], [], [], 1.0)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in run
    super(Application, self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in run
    Arbiter(self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in run
    self.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 halt
    self.stop()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stop
    time.sleep(0.1)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    self.sleep()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleep
    ready = select.select([self.PIPE[0]], [], [], 1.0)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in run
    super(Application, self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in run
    Arbiter(self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in run
    self.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 halt
    self.stop()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stop
    time.sleep(0.1)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    self.sleep()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleep
    ready = select.select([self.PIPE[0]], [], [], 1.0)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in run
    super(Application, self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in run
    Arbiter(self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in run
    self.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 halt
    self.stop()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stop
    time.sleep(0.1)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    self.sleep()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleep
    ready = select.select([self.PIPE[0]], [], [], 1.0)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in run
    super(Application, self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in run
    Arbiter(self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in run
    self.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 halt
    self.stop()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stop
    time.sleep(0.1)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    self.sleep()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleep
    ready = select.select([self.PIPE[0]], [], [], 1.0)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in run
    super(Application, self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in run
    Arbiter(self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in run
    self.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 halt
    self.stop()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stop
    time.sleep(0.1)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    self.sleep()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleep
    ready = select.select([self.PIPE[0]], [], [], 1.0)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in run
    super(Application, self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in run
    Arbiter(self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in run
    self.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 halt
    self.stop()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stop
    time.sleep(0.1)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    self.sleep()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleep
    ready = select.select([self.PIPE[0]], [], [], 1.0)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in run
    super(Application, self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in run
    Arbiter(self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in run
    self.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 halt
    self.stop()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stop
    time.sleep(0.1)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    self.sleep()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleep
    ready = select.select([self.PIPE[0]], [], [], 1.0)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in run
    super(Application, self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in run
    Arbiter(self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in run
    self.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 halt
    self.stop()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stop
    time.sleep(0.1)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    self.sleep()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleep
    ready = select.select([self.PIPE[0]], [], [], 1.0)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in run
    super(Application, self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in run
    Arbiter(self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in run
    self.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 halt
    self.stop()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stop
    time.sleep(0.1)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    self.sleep()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleep
    ready = select.select([self.PIPE[0]], [], [], 1.0)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in run
    super(Application, self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in run
    Arbiter(self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in run
    self.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 halt
    self.stop()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stop
    time.sleep(0.1)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    self.sleep()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 317, in sleep
    ready = select.select([self.PIPE[0]], [], [], 1.0)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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 run
    WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 192, in run
    super(Application, self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/app/base.py", line 72, in run
    Arbiter(self).run()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 206, in run
    self.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 halt
    self.stop()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 347, in stop
    time.sleep(0.1)
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
    self.reap_workers()
  File "/home/taiga/.virtualenvs/taiga/lib/python3.4/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
    raise 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
...

David Barragán

unread,
Sep 30, 2016, 8:18:49 AM9/30/16
to fatima batool, tai...@googlegroups.com
I don't know why it could be happen, you can try to run gunicorn manually (not with circus) and with debug mode enable to show what could be happen. Or reinstall Taiga again using taiga-vagrant or taiga-script.

fatima batool

unread,
Sep 30, 2016, 8:22:08 AM9/30/16
to David Barragán, tai...@googlegroups.com
how to run gunicorn manually ??

David Barragán

unread,
Sep 30, 2016, 8:31:29 AM9/30/16
to fatima batool, tai...@googlegroups.com
According to you circus.ini

(...)
[watcher:taiga]
working_dir = /home/taiga/taiga-back
cmd = gunicorn
args = -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

gunicorn -w 3 -t 60 --pythonpath=. -b 127.0.0.1:8001 taiga.wsgi

and if you make 

curl http://127.0.0.1:8001/api/v1

in other terminal you should see the API response.

You can review the gunicorn options to show a more verbosity ouput.


zhangc...@gmail.com

unread,
Dec 6, 2016, 11:18:28 AM12/6/16
to taigaio, fbato...@gmail.com
Hi, I have been fallen in same issue today.
I manually run the command, then curl http:127.0.0.1:8001/api/v1, I got 


<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;


    }


}



Have you fixed your issue? can you help me out?

Thanks,
Cheng

在 2016年9月30日星期五 UTC+8下午8:31:29,David Barragán写道:
...
Reply all
Reply to author
Forward
0 new messages