[GH-ISSUE #60] Recommended distro? #39

Open
opened 2026-02-27 15:57:05 +03:00 by kerem · 67 comments
Owner

Originally created by @romu70 on GitHub (Oct 19, 2015).
Original GitHub issue: https://github.com/retspen/webvirtcloud/issues/60

Hi,
Would like to know if there is a recommended distro to install webvirtcloud? I ask because I've never been able to properly run it on Xubuntu 14.04 and currently, I'm trying to run the setup procedure on CentOS 7 and have a lot of errors.

Thanks.

Originally created by @romu70 on GitHub (Oct 19, 2015). Original GitHub issue: https://github.com/retspen/webvirtcloud/issues/60 Hi, Would like to know if there is a recommended distro to install webvirtcloud? I ask because I've never been able to properly run it on Xubuntu 14.04 and currently, I'm trying to run the setup procedure on CentOS 7 and have a lot of errors. Thanks.
Author
Owner

@savichev commented on GitHub (Oct 20, 2015):

Write errors and help you. I instal on Mint, Ubuntu, Debian. All work!

<!-- gh-comment-id:149459738 --> @savichev commented on GitHub (Oct 20, 2015): Write errors and help you. I instal on Mint, Ubuntu, Debian. All work!
Author
Owner

@romu70 commented on GitHub (Oct 21, 2015):

First error on CentOS:
sudo source venv/bin/activate

-> "sudo: source: command not found"

<!-- gh-comment-id:149838892 --> @romu70 commented on GitHub (Oct 21, 2015): First error on CentOS: `sudo source venv/bin/activate` -> "sudo: source: command not found"
Author
Owner

@savichev commented on GitHub (Oct 21, 2015):

Please probe use -s option

sudo -s source venv/bin/activate

sudo -s which is sudo's own way of saying "start a shell as this user."

<!-- gh-comment-id:149846459 --> @savichev commented on GitHub (Oct 21, 2015): Please probe use -s option ``` sudo -s source venv/bin/activate ``` sudo -s which is sudo's own way of saying "start a shell as this user."
Author
Owner

@romu70 commented on GitHub (Oct 21, 2015):

It works, thanks. pip is not installed by default in CentOS, so python-pip should be added to the list of packages to be installed.

The rest of the wiki ran fine, except this command sudo supervisorctl status which gives:

novncd                           BACKOFF   Exited too quickly (process log may have details)
webvirtcloud                     BACKOFF   can't find command '/srv/webvirtcloud/venv/bin/gunicorn'

I rebooted the server, same problem.

<!-- gh-comment-id:149870703 --> @romu70 commented on GitHub (Oct 21, 2015): It works, thanks. pip is not installed by default in CentOS, so python-pip should be added to the list of packages to be installed. The rest of the wiki ran fine, except this command `sudo supervisorctl status` which gives: ``` novncd BACKOFF Exited too quickly (process log may have details) webvirtcloud BACKOFF can't find command '/srv/webvirtcloud/venv/bin/gunicorn' ``` I rebooted the server, same problem.
Author
Owner

@savichev commented on GitHub (Oct 21, 2015):

Please logs of supervisor (/var/log/supervisor.log)
... and
ls -a /srv/webvirtcloud/venv/bin/

<!-- gh-comment-id:149875034 --> @savichev commented on GitHub (Oct 21, 2015): Please logs of supervisor (/var/log/supervisor.log) ... and `ls -a /srv/webvirtcloud/venv/bin/`
Author
Owner

@romu70 commented on GitHub (Oct 21, 2015):

First: there is no "gunicorn" in /srv/webvirtcloud/venv/bin.

Supervisord.log is here:

2015-10-21 14:01:41,192 WARN received SIGTERM indicating exit request
2015-10-21 14:01:41,193 INFO waiting for novncd to die
2015-10-21 14:01:41,206 INFO stopped: novncd (terminated by SIGTERM)
2015-10-21 14:01:41,369 CRIT Supervisor running as root (no user in config file)
2015-10-21 14:01:41,369 WARN No file matches via include "/etc/supervisord.d/*.ini"
2015-10-21 14:01:41,430 INFO RPC interface 'supervisor' initialized
2015-10-21 14:01:41,430 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2015-10-21 14:01:41,431 INFO daemonizing the supervisord process
2015-10-21 14:01:41,432 INFO supervisord started with pid 22580
2015-10-21 14:01:42,434 INFO spawnerr: can't find command '/srv/webvirtcloud/venv/bin/gunicorn'
2015-10-21 14:01:42,436 INFO spawned: 'novncd' with pid 22581
2015-10-21 14:01:42,479 INFO exited: novncd (exit status 1; not expected)
2015-10-21 14:01:43,481 INFO spawnerr: can't find command '/srv/webvirtcloud/venv/bin/gunicorn'
2015-10-21 14:01:43,482 INFO spawned: 'novncd' with pid 22582
2015-10-21 14:01:43,516 INFO exited: novncd (exit status 1; not expected)
2015-10-21 14:01:45,519 INFO spawnerr: can't find command '/srv/webvirtcloud/venv/bin/gunicorn'
2015-10-21 14:01:45,521 INFO spawned: 'novncd' with pid 22583
2015-10-21 14:01:45,550 INFO exited: novncd (exit status 1; not expected)
2015-10-21 14:01:48,778 INFO spawnerr: can't find command '/srv/webvirtcloud/venv/bin/gunicorn'
2015-10-21 14:01:48,778 INFO gave up: webvirtcloud entered FATAL state, too many start retries too quickly
2015-10-21 14:01:48,779 INFO spawned: 'novncd' with pid 22586
2015-10-21 14:01:48,821 INFO exited: novncd (exit status 1; not expected)
2015-10-21 14:01:49,822 INFO gave up: novncd entered FATAL state, too many start retries too quickly
2015-10-21 14:02:11,371 WARN received SIGTERM indicating exit request
2015-10-21 14:08:03,442 CRIT Supervisor running as root (no user in config file)
2015-10-21 14:08:03,459 WARN No file matches via include "/etc/supervisord.d/*.ini"
2015-10-21 14:08:03,573 INFO RPC interface 'supervisor' initialized
2015-10-21 14:08:03,573 CRIT Server 'unix_http_server' running without any HTTP authentication checking

Thanks for the help.

<!-- gh-comment-id:149877308 --> @romu70 commented on GitHub (Oct 21, 2015): First: there is no "gunicorn" in /srv/webvirtcloud/venv/bin. Supervisord.log is here: ``` 2015-10-21 14:01:41,192 WARN received SIGTERM indicating exit request 2015-10-21 14:01:41,193 INFO waiting for novncd to die 2015-10-21 14:01:41,206 INFO stopped: novncd (terminated by SIGTERM) 2015-10-21 14:01:41,369 CRIT Supervisor running as root (no user in config file) 2015-10-21 14:01:41,369 WARN No file matches via include "/etc/supervisord.d/*.ini" 2015-10-21 14:01:41,430 INFO RPC interface 'supervisor' initialized 2015-10-21 14:01:41,430 CRIT Server 'unix_http_server' running without any HTTP authentication checking 2015-10-21 14:01:41,431 INFO daemonizing the supervisord process 2015-10-21 14:01:41,432 INFO supervisord started with pid 22580 2015-10-21 14:01:42,434 INFO spawnerr: can't find command '/srv/webvirtcloud/venv/bin/gunicorn' 2015-10-21 14:01:42,436 INFO spawned: 'novncd' with pid 22581 2015-10-21 14:01:42,479 INFO exited: novncd (exit status 1; not expected) 2015-10-21 14:01:43,481 INFO spawnerr: can't find command '/srv/webvirtcloud/venv/bin/gunicorn' 2015-10-21 14:01:43,482 INFO spawned: 'novncd' with pid 22582 2015-10-21 14:01:43,516 INFO exited: novncd (exit status 1; not expected) 2015-10-21 14:01:45,519 INFO spawnerr: can't find command '/srv/webvirtcloud/venv/bin/gunicorn' 2015-10-21 14:01:45,521 INFO spawned: 'novncd' with pid 22583 2015-10-21 14:01:45,550 INFO exited: novncd (exit status 1; not expected) 2015-10-21 14:01:48,778 INFO spawnerr: can't find command '/srv/webvirtcloud/venv/bin/gunicorn' 2015-10-21 14:01:48,778 INFO gave up: webvirtcloud entered FATAL state, too many start retries too quickly 2015-10-21 14:01:48,779 INFO spawned: 'novncd' with pid 22586 2015-10-21 14:01:48,821 INFO exited: novncd (exit status 1; not expected) 2015-10-21 14:01:49,822 INFO gave up: novncd entered FATAL state, too many start retries too quickly 2015-10-21 14:02:11,371 WARN received SIGTERM indicating exit request 2015-10-21 14:08:03,442 CRIT Supervisor running as root (no user in config file) 2015-10-21 14:08:03,459 WARN No file matches via include "/etc/supervisord.d/*.ini" 2015-10-21 14:08:03,573 INFO RPC interface 'supervisor' initialized 2015-10-21 14:08:03,573 CRIT Server 'unix_http_server' running without any HTTP authentication checking ``` Thanks for the help.
Author
Owner

@savichev commented on GitHub (Oct 21, 2015):

Perhaps this same problem https://github.com/retspen/webvirtcloud/issues/40#issuecomment-127164088

cd /srv/webvirtcloud
source venv/bin/activate
(venv)woof@host:/srv/webvirtcloud$ sudo venv/bin/pip install --upgrade gunicorn==19.3.0
(venv)woof@host:/srv/webvirtcloud$ ls -la venv/bin/
<!-- gh-comment-id:149877739 --> @savichev commented on GitHub (Oct 21, 2015): Perhaps this same problem https://github.com/retspen/webvirtcloud/issues/40#issuecomment-127164088 ``` cd /srv/webvirtcloud source venv/bin/activate (venv)woof@host:/srv/webvirtcloud$ sudo venv/bin/pip install --upgrade gunicorn==19.3.0 (venv)woof@host:/srv/webvirtcloud$ ls -la venv/bin/ ```
Author
Owner

@romu70 commented on GitHub (Oct 21, 2015):

Seems to work but with this error:

sudo venv/bin/pip install --upgrade gunicorn==19.3.0
Downloading/unpacking gunicorn==19.3.0
  Downloading gunicorn-19.3.0.tar.gz (395kB): 395kB downloaded
  Running setup.py egg_info for package gunicorn

    warning: no previously-included files matching '__pycache__' found under directory '*'
    warning: no previously-included files matching '*.py[co]' found under directory '*'
Installing collected packages: gunicorn
  Running setup.py install for gunicorn

    warning: no previously-included files matching '__pycache__' found under directory '*'
    warning: no previously-included files matching '*.py[co]' found under directory '*'
      File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/_gaiohttp.py", line 68
        yield from self.wsgi.close()
                 ^
    SyntaxError: invalid syntax

    Installing gunicorn_paster script to /srv/webvirtcloud/venv/bin
    Installing gunicorn script to /srv/webvirtcloud/venv/bin
    Installing gunicorn_django script to /srv/webvirtcloud/venv/bin
Successfully installed gunicorn
Cleaning up...
<!-- gh-comment-id:149878337 --> @romu70 commented on GitHub (Oct 21, 2015): Seems to work but with this error: ``` sudo venv/bin/pip install --upgrade gunicorn==19.3.0 Downloading/unpacking gunicorn==19.3.0 Downloading gunicorn-19.3.0.tar.gz (395kB): 395kB downloaded Running setup.py egg_info for package gunicorn warning: no previously-included files matching '__pycache__' found under directory '*' warning: no previously-included files matching '*.py[co]' found under directory '*' Installing collected packages: gunicorn Running setup.py install for gunicorn warning: no previously-included files matching '__pycache__' found under directory '*' warning: no previously-included files matching '*.py[co]' found under directory '*' File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/_gaiohttp.py", line 68 yield from self.wsgi.close() ^ SyntaxError: invalid syntax Installing gunicorn_paster script to /srv/webvirtcloud/venv/bin Installing gunicorn script to /srv/webvirtcloud/venv/bin Installing gunicorn_django script to /srv/webvirtcloud/venv/bin Successfully installed gunicorn Cleaning up... ```
Author
Owner

@savichev commented on GitHub (Oct 21, 2015):

Ignore this error

ls -la venv/bin/

Sorry, I ended working day. I propose to continue tomorrow.

<!-- gh-comment-id:149878723 --> @savichev commented on GitHub (Oct 21, 2015): Ignore this error ``` ls -la venv/bin/ ``` Sorry, I ended working day. I propose to continue tomorrow.
Author
Owner

@romu70 commented on GitHub (Oct 21, 2015):

I set the correct owner of the files to get a clean state:

total 56
drwxr-xr-x. 2 nginx nginx 4096 Oct 21 14:29 .
drwxr-xr-x. 5 nginx nginx   52 Oct 21 14:29 ..
-rw-r--r--. 1 nginx nginx 2203 Oct 21 11:41 activate
-rw-r--r--. 1 nginx nginx 1259 Oct 21 11:41 activate.csh
-rw-r--r--. 1 nginx nginx 2398 Oct 21 11:41 activate.fish
-rw-r--r--. 1 nginx nginx 1129 Oct 21 11:41 activate_this.py
-rwxr-xr-x. 1 nginx nginx  338 Oct 21 11:41 easy_install
-rwxr-xr-x. 1 nginx nginx  346 Oct 21 11:41 easy_install-2.7
-rwxr-xr-x. 1 nginx nginx  327 Oct 21 14:29 gunicorn
-rwxr-xr-x. 1 nginx nginx  341 Oct 21 14:29 gunicorn_django
-rwxr-xr-x. 1 nginx nginx  341 Oct 21 14:29 gunicorn_paster
-rwxr-xr-x. 1 nginx nginx  299 Oct 21 11:41 pip
-rwxr-xr-x. 1 nginx nginx  307 Oct 21 11:41 pip-2.7
-rwxr-xr-x. 1 nginx nginx 7136 Oct 21 11:41 python
lrwxrwxrwx. 1 nginx nginx    6 Oct 21 11:41 python2 -> python
lrwxrwxrwx. 1 nginx nginx    6 Oct 21 11:41 python2.7 -> python
<!-- gh-comment-id:149882157 --> @romu70 commented on GitHub (Oct 21, 2015): I set the correct owner of the files to get a clean state: ``` total 56 drwxr-xr-x. 2 nginx nginx 4096 Oct 21 14:29 . drwxr-xr-x. 5 nginx nginx 52 Oct 21 14:29 .. -rw-r--r--. 1 nginx nginx 2203 Oct 21 11:41 activate -rw-r--r--. 1 nginx nginx 1259 Oct 21 11:41 activate.csh -rw-r--r--. 1 nginx nginx 2398 Oct 21 11:41 activate.fish -rw-r--r--. 1 nginx nginx 1129 Oct 21 11:41 activate_this.py -rwxr-xr-x. 1 nginx nginx 338 Oct 21 11:41 easy_install -rwxr-xr-x. 1 nginx nginx 346 Oct 21 11:41 easy_install-2.7 -rwxr-xr-x. 1 nginx nginx 327 Oct 21 14:29 gunicorn -rwxr-xr-x. 1 nginx nginx 341 Oct 21 14:29 gunicorn_django -rwxr-xr-x. 1 nginx nginx 341 Oct 21 14:29 gunicorn_paster -rwxr-xr-x. 1 nginx nginx 299 Oct 21 11:41 pip -rwxr-xr-x. 1 nginx nginx 307 Oct 21 11:41 pip-2.7 -rwxr-xr-x. 1 nginx nginx 7136 Oct 21 11:41 python lrwxrwxrwx. 1 nginx nginx 6 Oct 21 11:41 python2 -> python lrwxrwxrwx. 1 nginx nginx 6 Oct 21 11:41 python2.7 -> python ```
Author
Owner

@savichev commented on GitHub (Oct 21, 2015):

sudo service supervisor restart
sudo supervisorctl status
<!-- gh-comment-id:149884143 --> @savichev commented on GitHub (Oct 21, 2015): ``` sudo service supervisor restart sudo supervisorctl status ```
Author
Owner

@romu70 commented on GitHub (Oct 21, 2015):

Same state BACKOFF for both, except this time there is no message about the non existing gunicorn command. Trying to reboot right now.

<!-- gh-comment-id:149884435 --> @romu70 commented on GitHub (Oct 21, 2015): Same state BACKOFF for both, except this time there is no message about the non existing gunicorn command. Trying to reboot right now.
Author
Owner

@savichev commented on GitHub (Oct 21, 2015):

Change permission for selinux:

sudo semanage fcontext -a -t httpd_sys_content_t "/srv/webvirtcloud(/.*)"
<!-- gh-comment-id:149884686 --> @savichev commented on GitHub (Oct 21, 2015): Change permission for selinux: ``` sudo semanage fcontext -a -t httpd_sys_content_t "/srv/webvirtcloud(/.*)" ```
Author
Owner

@romu70 commented on GitHub (Oct 21, 2015):

Already ran this when I followed the wiki, but rebooted, ran it again and try to start both nginx and supervisord. Status:

sudo supervisorctl status
gstfsd                           RUNNING   pid 2978, uptime 0:00:09
novncd                           FATAL     Exited too quickly (process log may have details)
webvirtcloud                     FATAL     Exited too quickly (process log may have details)

After a while, I restarted them, and they're now "BACKOFF" again.

<!-- gh-comment-id:149885194 --> @romu70 commented on GitHub (Oct 21, 2015): Already ran this when I followed the wiki, but rebooted, ran it again and try to start both nginx and supervisord. Status: ``` sudo supervisorctl status gstfsd RUNNING pid 2978, uptime 0:00:09 novncd FATAL Exited too quickly (process log may have details) webvirtcloud FATAL Exited too quickly (process log may have details) ``` After a while, I restarted them, and they're now "BACKOFF" again.
Author
Owner

@savichev commented on GitHub (Oct 21, 2015):

Please logs of supervisor

<!-- gh-comment-id:149885431 --> @savichev commented on GitHub (Oct 21, 2015): Please logs of supervisor
Author
Owner

@romu70 commented on GitHub (Oct 21, 2015):

Here it is:

2015-10-21 14:52:57,508 CRIT Supervisor running as root (no user in config file)
2015-10-21 14:52:57,508 WARN Included extra file "/etc/supervisord.d/gstfsd.ini" during parsing
2015-10-21 14:52:57,570 INFO RPC interface 'supervisor' initialized
2015-10-21 14:52:57,570 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2015-10-21 14:52:57,571 INFO daemonizing the supervisord process
2015-10-21 14:52:57,571 INFO supervisord started with pid 3080
2015-10-21 14:52:58,575 INFO spawned: 'webvirtcloud' with pid 3081
2015-10-21 14:52:58,577 INFO spawned: 'novncd' with pid 3082
2015-10-21 14:52:58,578 INFO spawned: 'gstfsd' with pid 3083
2015-10-21 14:52:58,599 INFO exited: novncd (exit status 1; not expected)
2015-10-21 14:52:58,755 INFO exited: webvirtcloud (exit status 1; not expected)
2015-10-21 14:52:59,758 INFO spawned: 'webvirtcloud' with pid 3089
2015-10-21 14:52:59,760 INFO spawned: 'novncd' with pid 3090
2015-10-21 14:52:59,760 INFO success: gstfsd entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2015-10-21 14:52:59,782 INFO exited: novncd (exit status 1; not expected)
2015-10-21 14:52:59,907 INFO exited: webvirtcloud (exit status 1; not expected)
2015-10-21 14:53:02,472 INFO spawned: 'webvirtcloud' with pid 3098
2015-10-21 14:53:02,474 INFO spawned: 'novncd' with pid 3099
2015-10-21 14:53:02,514 INFO exited: novncd (exit status 1; not expected)
2015-10-21 14:53:02,694 INFO exited: webvirtcloud (exit status 1; not expected)
2015-10-21 14:53:05,700 INFO spawned: 'webvirtcloud' with pid 3105
2015-10-21 14:53:05,701 INFO spawned: 'novncd' with pid 3106
2015-10-21 14:53:05,734 INFO exited: novncd (exit status 1; not expected)
2015-10-21 14:53:05,875 INFO gave up: novncd entered FATAL state, too many start retries too quickly
2015-10-21 14:53:05,908 INFO exited: webvirtcloud (exit status 1; not expected)
2015-10-21 14:53:06,910 INFO gave up: webvirtcloud entered FATAL state, too many start retries too quickly
<!-- gh-comment-id:149885672 --> @romu70 commented on GitHub (Oct 21, 2015): Here it is: ``` 2015-10-21 14:52:57,508 CRIT Supervisor running as root (no user in config file) 2015-10-21 14:52:57,508 WARN Included extra file "/etc/supervisord.d/gstfsd.ini" during parsing 2015-10-21 14:52:57,570 INFO RPC interface 'supervisor' initialized 2015-10-21 14:52:57,570 CRIT Server 'unix_http_server' running without any HTTP authentication checking 2015-10-21 14:52:57,571 INFO daemonizing the supervisord process 2015-10-21 14:52:57,571 INFO supervisord started with pid 3080 2015-10-21 14:52:58,575 INFO spawned: 'webvirtcloud' with pid 3081 2015-10-21 14:52:58,577 INFO spawned: 'novncd' with pid 3082 2015-10-21 14:52:58,578 INFO spawned: 'gstfsd' with pid 3083 2015-10-21 14:52:58,599 INFO exited: novncd (exit status 1; not expected) 2015-10-21 14:52:58,755 INFO exited: webvirtcloud (exit status 1; not expected) 2015-10-21 14:52:59,758 INFO spawned: 'webvirtcloud' with pid 3089 2015-10-21 14:52:59,760 INFO spawned: 'novncd' with pid 3090 2015-10-21 14:52:59,760 INFO success: gstfsd entered RUNNING state, process has stayed up for > than 1 seconds (startsecs) 2015-10-21 14:52:59,782 INFO exited: novncd (exit status 1; not expected) 2015-10-21 14:52:59,907 INFO exited: webvirtcloud (exit status 1; not expected) 2015-10-21 14:53:02,472 INFO spawned: 'webvirtcloud' with pid 3098 2015-10-21 14:53:02,474 INFO spawned: 'novncd' with pid 3099 2015-10-21 14:53:02,514 INFO exited: novncd (exit status 1; not expected) 2015-10-21 14:53:02,694 INFO exited: webvirtcloud (exit status 1; not expected) 2015-10-21 14:53:05,700 INFO spawned: 'webvirtcloud' with pid 3105 2015-10-21 14:53:05,701 INFO spawned: 'novncd' with pid 3106 2015-10-21 14:53:05,734 INFO exited: novncd (exit status 1; not expected) 2015-10-21 14:53:05,875 INFO gave up: novncd entered FATAL state, too many start retries too quickly 2015-10-21 14:53:05,908 INFO exited: webvirtcloud (exit status 1; not expected) 2015-10-21 14:53:06,910 INFO gave up: webvirtcloud entered FATAL state, too many start retries too quickly ```
Author
Owner

@savichev commented on GitHub (Oct 21, 2015):

sudo cat /etc/supervisord.conf
<!-- gh-comment-id:149886018 --> @savichev commented on GitHub (Oct 21, 2015): ``` sudo cat /etc/supervisord.conf ```
Author
Owner

@romu70 commented on GitHub (Oct 21, 2015):

Just the webvirtcloud part, the rest is untouched:

[program:webvirtcloud]
command=/srv/webvirtcloud/venv/bin/gunicorn webvirtcloud.wsgi:application -c /srv/webvirtcloud/gunicorn.conf.py
directory=/srv/webvirtcloud
user=nginx
autostart=true
autorestart=true
redirect_stderr=true

[program:novncd]
command=/srv/webvirtcloud/venv/bin/python /srv/webvirtcloud/console/novncd
directory=/srv/webvirtcloud
user=nginx
autostart=true
autorestart=true
redirect_stderr=true
<!-- gh-comment-id:149887245 --> @romu70 commented on GitHub (Oct 21, 2015): Just the webvirtcloud part, the rest is untouched: ``` [program:webvirtcloud] command=/srv/webvirtcloud/venv/bin/gunicorn webvirtcloud.wsgi:application -c /srv/webvirtcloud/gunicorn.conf.py directory=/srv/webvirtcloud user=nginx autostart=true autorestart=true redirect_stderr=true [program:novncd] command=/srv/webvirtcloud/venv/bin/python /srv/webvirtcloud/console/novncd directory=/srv/webvirtcloud user=nginx autostart=true autorestart=true redirect_stderr=true ```
Author
Owner

@savichev commented on GitHub (Oct 21, 2015):

In your operating system has a directory
/var/log/supervisor/?
if yes, need logs...

<!-- gh-comment-id:149888366 --> @savichev commented on GitHub (Oct 21, 2015): In your operating system has a directory `/var/log/supervisor/`? if yes, need logs...
Author
Owner

@romu70 commented on GitHub (Oct 21, 2015):

Yes, with only supervisord.log.

<!-- gh-comment-id:149888612 --> @romu70 commented on GitHub (Oct 21, 2015): Yes, with only supervisord.log.
Author
Owner

@savichev commented on GitHub (Oct 22, 2015):

modify config

[program:webvirtcloud]
command=/srv/webvirtcloud/venv/bin/gunicorn webvirtcloud.wsgi:application -c /srv/webvirtcloud/gunicorn.conf.py
directory=/srv/webvirtcloud
user=nginx
autostart=true
autorestart=true
redirect_stderr=true
stdout_logfile=/var/log/supervisor/webvirtcloud.log
stdout_logfile_maxbytes=2MB
loglevel=warn

[program:novncd]
command=/srv/webvirtcloud/venv/bin/python /srv/webvirtcloud/console/novncd
directory=/srv/webvirtcloud
user=nginx
autostart=true
autorestart=true
redirect_stderr=true
stdout_logfile=/var/log/supervisor/novncd.log
stdout_logfile_maxbytes=2MB
loglevel=warn
<!-- gh-comment-id:150113747 --> @savichev commented on GitHub (Oct 22, 2015): modify config ``` [program:webvirtcloud] command=/srv/webvirtcloud/venv/bin/gunicorn webvirtcloud.wsgi:application -c /srv/webvirtcloud/gunicorn.conf.py directory=/srv/webvirtcloud user=nginx autostart=true autorestart=true redirect_stderr=true stdout_logfile=/var/log/supervisor/webvirtcloud.log stdout_logfile_maxbytes=2MB loglevel=warn [program:novncd] command=/srv/webvirtcloud/venv/bin/python /srv/webvirtcloud/console/novncd directory=/srv/webvirtcloud user=nginx autostart=true autorestart=true redirect_stderr=true stdout_logfile=/var/log/supervisor/novncd.log stdout_logfile_maxbytes=2MB loglevel=warn ```
Author
Owner

@romu70 commented on GitHub (Oct 22, 2015):

Log:

[2015-10-22 17:28:40 +0000] [32482] [INFO] Starting gunicorn 19.3.0
[2015-10-22 17:28:40 +0000] [32482] [INFO] Listening at: http://127.0.0.1:8000 (32482)
[2015-10-22 17:28:40 +0000] [32482] [INFO] Using worker: sync
[2015-10-22 17:28:40 +0000] [32490] [INFO] Booting worker with pid: 32490
[2015-10-22 17:28:40 +0000] [32491] [INFO] Booting worker with pid: 32491
[2015-10-22 17:28:40 +0000] [32492] [INFO] Booting worker with pid: 32492
[2015-10-22 17:28:40 +0000] [32493] [INFO] Booting worker with pid: 32493
[2015-10-22 17:28:40 +0000] [32490] [ERROR] Exception in worker process:
Traceback (most recent call last):
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker
    worker.init_process()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process
    self.wsgi = self.app.wsgi()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
    self.callable = self.load()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
    return self.load_wsgiapp()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
    return util.import_app(self.app_uri)
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app
    __import__(module)
  File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module>
    from django.core.wsgi import get_wsgi_application
ImportError: No module named django.core.wsgi
Traceback (most recent call last):
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker
    worker.init_process()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process
    self.wsgi = self.app.wsgi()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
    self.callable = self.load()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
    return self.load_wsgiapp()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
    return util.import_app(self.app_uri)
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app
    __import__(module)
  File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module>
    from django.core.wsgi import get_wsgi_application
ImportError: No module named django.core.wsgi
[2015-10-22 17:28:40 +0000] [32490] [INFO] Worker exiting (pid: 32490)
[2015-10-22 17:28:40 +0000] [32491] [ERROR] Exception in worker process:
Traceback (most recent call last):
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker
    worker.init_process()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process
    self.wsgi = self.app.wsgi()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
    self.callable = self.load()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
    return self.load_wsgiapp()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
    return util.import_app(self.app_uri)
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app
    __import__(module)
  File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module>
    from django.core.wsgi import get_wsgi_application
ImportError: No module named django.core.wsgi
Traceback (most recent call last):
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker
    worker.init_process()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process
    self.wsgi = self.app.wsgi()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
    self.callable = self.load()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
    return self.load_wsgiapp()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
    return util.import_app(self.app_uri)
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app
    __import__(module)
  File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module>
    from django.core.wsgi import get_wsgi_application
ImportError: No module named django.core.wsgi
[2015-10-22 17:28:40 +0000] [32492] [ERROR] Exception in worker process:
Traceback (most recent call last):
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker
    worker.init_process()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process
    self.wsgi = self.app.wsgi()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
    self.callable = self.load()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
    return self.load_wsgiapp()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
    return util.import_app(self.app_uri)
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app
    __import__(module)
  File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module>
    from django.core.wsgi import get_wsgi_application
ImportError: No module named django.core.wsgi
Traceback (most recent call last):
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker
    worker.init_process()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process
    self.wsgi = self.app.wsgi()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
    self.callable = self.load()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
    return self.load_wsgiapp()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
    return util.import_app(self.app_uri)
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app
    __import__(module)
  File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module>
    from django.core.wsgi import get_wsgi_application
ImportError: No module named django.core.wsgi
[2015-10-22 17:28:40 +0000] [32491] [INFO] Worker exiting (pid: 32491)
[2015-10-22 17:28:40 +0000] [32492] [INFO] Worker exiting (pid: 32492)
[2015-10-22 17:28:40 +0000] [32493] [ERROR] Exception in worker process:
Traceback (most recent call last):
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker
    worker.init_process()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process
    self.wsgi = self.app.wsgi()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
    self.callable = self.load()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
    return self.load_wsgiapp()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
    return util.import_app(self.app_uri)
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app
    __import__(module)
  File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module>
    from django.core.wsgi import get_wsgi_application
ImportError: No module named django.core.wsgi
Traceback (most recent call last):
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker
    worker.init_process()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process
    self.wsgi = self.app.wsgi()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
    self.callable = self.load()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
    return self.load_wsgiapp()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
    return util.import_app(self.app_uri)
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app
    __import__(module)
  File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module>
    from django.core.wsgi import get_wsgi_application
ImportError: No module named django.core.wsgi
[2015-10-22 17:28:40 +0000] [32493] [INFO] Worker exiting (pid: 32493)
Traceback (most recent call last):
  File "/srv/webvirtcloud/venv/bin/gunicorn", line 9, in <module>
    load_entry_point('gunicorn==19.3.0', 'console_scripts', 'gunicorn')()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 74, in run
    WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 189, in run
    super(Application, self).run()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 72, in run
    Arbiter(self).run()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 174, in run
    self.manage_workers()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 477, in manage_workers
    self.spawn_workers()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 541, in spawn_workers
    time.sleep(0.1 * random.random())
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 214, in handle_chld
    self.reap_workers()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 459, in reap_workers
    raise HaltServer(reason, self.WORKER_BOOT_ERROR)
gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>
[2015-10-22 17:28:41 +0000] [32496] [INFO] Starting gunicorn 19.3.0
[2015-10-22 17:28:41 +0000] [32496] [INFO] Listening at: http://127.0.0.1:8000 (32496)
[2015-10-22 17:28:41 +0000] [32496] [INFO] Using worker: sync
[2015-10-22 17:28:41 +0000] [32508] [INFO] Booting worker with pid: 32508
[2015-10-22 17:28:41 +0000] [32508] [ERROR] Exception in worker process:
Traceback (most recent call last):
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker
    worker.init_process()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process
    self.wsgi = self.app.wsgi()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
    self.callable = self.load()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
    return self.load_wsgiapp()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
    return util.import_app(self.app_uri)
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app
    __import__(module)
  File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module>
    from django.core.wsgi import get_wsgi_application
ImportError: No module named django.core.wsgi
Traceback (most recent call last):
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker
    worker.init_process()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process
    self.wsgi = self.app.wsgi()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
    self.callable = self.load()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
    return self.load_wsgiapp()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
    return util.import_app(self.app_uri)
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app
    __import__(module)
  File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module>
    from django.core.wsgi import get_wsgi_application
ImportError: No module named django.core.wsgi
[2015-10-22 17:28:41 +0000] [32508] [INFO] Worker exiting (pid: 32508)
Traceback (most recent call last):
  File "/srv/webvirtcloud/venv/bin/gunicorn", line 9, in <module>
    load_entry_point('gunicorn==19.3.0', 'console_scripts', 'gunicorn')()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 74, in run
    WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 189, in run
    super(Application, self).run()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 72, in run
    Arbiter(self).run()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 174, in run
    self.manage_workers()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 477, in manage_workers
    self.spawn_workers()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 541, in spawn_workers
    time.sleep(0.1 * random.random())
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 214, in handle_chld
    self.reap_workers()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 459, in reap_workers
    raise HaltServer(reason, self.WORKER_BOOT_ERROR)
gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>
[2015-10-22 17:28:43 +0000] [32509] [INFO] Starting gunicorn 19.3.0
[2015-10-22 17:28:43 +0000] [32509] [INFO] Listening at: http://127.0.0.1:8000 (32509)
[2015-10-22 17:28:43 +0000] [32509] [INFO] Using worker: sync
[2015-10-22 17:28:43 +0000] [32514] [INFO] Booting worker with pid: 32514
[2015-10-22 17:28:43 +0000] [32514] [ERROR] Exception in worker process:
Traceback (most recent call last):
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker
    worker.init_process()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process
    self.wsgi = self.app.wsgi()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
    self.callable = self.load()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
    return self.load_wsgiapp()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
    return util.import_app(self.app_uri)
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app
    __import__(module)
  File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module>
    from django.core.wsgi import get_wsgi_application
ImportError: No module named django.core.wsgi
Traceback (most recent call last):
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker
    worker.init_process()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process
    self.wsgi = self.app.wsgi()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
    self.callable = self.load()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
    return self.load_wsgiapp()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
    return util.import_app(self.app_uri)
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app
    __import__(module)
  File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module>
    from django.core.wsgi import get_wsgi_application
ImportError: No module named django.core.wsgi
[2015-10-22 17:28:43 +0000] [32514] [INFO] Worker exiting (pid: 32514)
Traceback (most recent call last):
  File "/srv/webvirtcloud/venv/bin/gunicorn", line 9, in <module>
    load_entry_point('gunicorn==19.3.0', 'console_scripts', 'gunicorn')()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 74, in run
    WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 189, in run
    super(Application, self).run()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 72, in run
    Arbiter(self).run()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 174, in run
    self.manage_workers()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 477, in manage_workers
    self.spawn_workers()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 541, in spawn_workers
    time.sleep(0.1 * random.random())
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 214, in handle_chld
    self.reap_workers()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 459, in reap_workers
    raise HaltServer(reason, self.WORKER_BOOT_ERROR)
gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>
[2015-10-22 17:28:45 +0000] [32517] [INFO] Starting gunicorn 19.3.0
[2015-10-22 17:28:45 +0000] [32517] [INFO] Listening at: http://127.0.0.1:8000 (32517)
[2015-10-22 17:28:45 +0000] [32517] [INFO] Using worker: sync
[2015-10-22 17:28:45 +0000] [32523] [INFO] Booting worker with pid: 32523
[2015-10-22 17:28:45 +0000] [32523] [ERROR] Exception in worker process:
Traceback (most recent call last):
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker
    worker.init_process()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process
    self.wsgi = self.app.wsgi()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
    self.callable = self.load()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
    return self.load_wsgiapp()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
    return util.import_app(self.app_uri)
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app
    __import__(module)
  File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module>
    from django.core.wsgi import get_wsgi_application
ImportError: No module named django.core.wsgi
Traceback (most recent call last):
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker
    worker.init_process()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process
    self.wsgi = self.app.wsgi()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
    self.callable = self.load()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
    return self.load_wsgiapp()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
    return util.import_app(self.app_uri)
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app
    __import__(module)
  File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module>
    from django.core.wsgi import get_wsgi_application
ImportError: No module named django.core.wsgi
[2015-10-22 17:28:45 +0000] [32523] [INFO] Worker exiting (pid: 32523)
Traceback (most recent call last):
  File "/srv/webvirtcloud/venv/bin/gunicorn", line 9, in <module>
    load_entry_point('gunicorn==19.3.0', 'console_scripts', 'gunicorn')()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 74, in run
    WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 189, in run
    super(Application, self).run()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 72, in run
    Arbiter(self).run()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 174, in run
    self.manage_workers()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 477, in manage_workers
    self.spawn_workers()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 541, in spawn_workers
    time.sleep(0.1 * random.random())
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 214, in handle_chld
    self.reap_workers()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 459, in reap_workers
    raise HaltServer(reason, self.WORKER_BOOT_ERROR)
gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>
[2015-10-22 17:28:48 +0000] [32527] [INFO] Starting gunicorn 19.3.0
[2015-10-22 17:28:48 +0000] [32527] [INFO] Listening at: http://127.0.0.1:8000 (32527)
[2015-10-22 17:28:48 +0000] [32527] [INFO] Using worker: sync
[2015-10-22 17:28:48 +0000] [32532] [INFO] Booting worker with pid: 32532
[2015-10-22 17:28:48 +0000] [32532] [ERROR] Exception in worker process:
Traceback (most recent call last):
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker
    worker.init_process()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process
    self.wsgi = self.app.wsgi()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
    self.callable = self.load()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
    return self.load_wsgiapp()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
    return util.import_app(self.app_uri)
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app
    __import__(module)
  File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module>
    from django.core.wsgi import get_wsgi_application
ImportError: No module named django.core.wsgi
Traceback (most recent call last):
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker
    worker.init_process()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process
    self.wsgi = self.app.wsgi()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
    self.callable = self.load()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
    return self.load_wsgiapp()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
    return util.import_app(self.app_uri)
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app
    __import__(module)
  File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module>
    from django.core.wsgi import get_wsgi_application
ImportError: No module named django.core.wsgi
[2015-10-22 17:28:48 +0000] [32532] [INFO] Worker exiting (pid: 32532)
Traceback (most recent call last):
  File "/srv/webvirtcloud/venv/bin/gunicorn", line 9, in <module>
    load_entry_point('gunicorn==19.3.0', 'console_scripts', 'gunicorn')()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 74, in run
    WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 189, in run
    super(Application, self).run()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 72, in run
    Arbiter(self).run()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 174, in run
    self.manage_workers()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 477, in manage_workers
    self.spawn_workers()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 541, in spawn_workers
    time.sleep(0.1 * random.random())
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 214, in handle_chld
    self.reap_workers()
  File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 459, in reap_workers
    raise HaltServer(reason, self.WORKER_BOOT_ERROR)
gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>```
<!-- gh-comment-id:150264979 --> @romu70 commented on GitHub (Oct 22, 2015): Log: `````` [2015-10-22 17:28:40 +0000] [32482] [INFO] Starting gunicorn 19.3.0 [2015-10-22 17:28:40 +0000] [32482] [INFO] Listening at: http://127.0.0.1:8000 (32482) [2015-10-22 17:28:40 +0000] [32482] [INFO] Using worker: sync [2015-10-22 17:28:40 +0000] [32490] [INFO] Booting worker with pid: 32490 [2015-10-22 17:28:40 +0000] [32491] [INFO] Booting worker with pid: 32491 [2015-10-22 17:28:40 +0000] [32492] [INFO] Booting worker with pid: 32492 [2015-10-22 17:28:40 +0000] [32493] [INFO] Booting worker with pid: 32493 [2015-10-22 17:28:40 +0000] [32490] [ERROR] Exception in worker process: Traceback (most recent call last): File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker worker.init_process() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process self.wsgi = self.app.wsgi() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi self.callable = self.load() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load return self.load_wsgiapp() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp return util.import_app(self.app_uri) File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app __import__(module) File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module> from django.core.wsgi import get_wsgi_application ImportError: No module named django.core.wsgi Traceback (most recent call last): File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker worker.init_process() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process self.wsgi = self.app.wsgi() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi self.callable = self.load() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load return self.load_wsgiapp() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp return util.import_app(self.app_uri) File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app __import__(module) File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module> from django.core.wsgi import get_wsgi_application ImportError: No module named django.core.wsgi [2015-10-22 17:28:40 +0000] [32490] [INFO] Worker exiting (pid: 32490) [2015-10-22 17:28:40 +0000] [32491] [ERROR] Exception in worker process: Traceback (most recent call last): File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker worker.init_process() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process self.wsgi = self.app.wsgi() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi self.callable = self.load() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load return self.load_wsgiapp() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp return util.import_app(self.app_uri) File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app __import__(module) File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module> from django.core.wsgi import get_wsgi_application ImportError: No module named django.core.wsgi Traceback (most recent call last): File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker worker.init_process() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process self.wsgi = self.app.wsgi() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi self.callable = self.load() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load return self.load_wsgiapp() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp return util.import_app(self.app_uri) File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app __import__(module) File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module> from django.core.wsgi import get_wsgi_application ImportError: No module named django.core.wsgi [2015-10-22 17:28:40 +0000] [32492] [ERROR] Exception in worker process: Traceback (most recent call last): File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker worker.init_process() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process self.wsgi = self.app.wsgi() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi self.callable = self.load() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load return self.load_wsgiapp() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp return util.import_app(self.app_uri) File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app __import__(module) File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module> from django.core.wsgi import get_wsgi_application ImportError: No module named django.core.wsgi Traceback (most recent call last): File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker worker.init_process() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process self.wsgi = self.app.wsgi() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi self.callable = self.load() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load return self.load_wsgiapp() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp return util.import_app(self.app_uri) File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app __import__(module) File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module> from django.core.wsgi import get_wsgi_application ImportError: No module named django.core.wsgi [2015-10-22 17:28:40 +0000] [32491] [INFO] Worker exiting (pid: 32491) [2015-10-22 17:28:40 +0000] [32492] [INFO] Worker exiting (pid: 32492) [2015-10-22 17:28:40 +0000] [32493] [ERROR] Exception in worker process: Traceback (most recent call last): File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker worker.init_process() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process self.wsgi = self.app.wsgi() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi self.callable = self.load() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load return self.load_wsgiapp() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp return util.import_app(self.app_uri) File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app __import__(module) File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module> from django.core.wsgi import get_wsgi_application ImportError: No module named django.core.wsgi Traceback (most recent call last): File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker worker.init_process() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process self.wsgi = self.app.wsgi() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi self.callable = self.load() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load return self.load_wsgiapp() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp return util.import_app(self.app_uri) File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app __import__(module) File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module> from django.core.wsgi import get_wsgi_application ImportError: No module named django.core.wsgi [2015-10-22 17:28:40 +0000] [32493] [INFO] Worker exiting (pid: 32493) Traceback (most recent call last): File "/srv/webvirtcloud/venv/bin/gunicorn", line 9, in <module> load_entry_point('gunicorn==19.3.0', 'console_scripts', 'gunicorn')() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 74, in run WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 189, in run super(Application, self).run() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 72, in run Arbiter(self).run() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 174, in run self.manage_workers() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 477, in manage_workers self.spawn_workers() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 541, in spawn_workers time.sleep(0.1 * random.random()) File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 214, in handle_chld self.reap_workers() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 459, in reap_workers raise HaltServer(reason, self.WORKER_BOOT_ERROR) gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3> [2015-10-22 17:28:41 +0000] [32496] [INFO] Starting gunicorn 19.3.0 [2015-10-22 17:28:41 +0000] [32496] [INFO] Listening at: http://127.0.0.1:8000 (32496) [2015-10-22 17:28:41 +0000] [32496] [INFO] Using worker: sync [2015-10-22 17:28:41 +0000] [32508] [INFO] Booting worker with pid: 32508 [2015-10-22 17:28:41 +0000] [32508] [ERROR] Exception in worker process: Traceback (most recent call last): File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker worker.init_process() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process self.wsgi = self.app.wsgi() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi self.callable = self.load() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load return self.load_wsgiapp() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp return util.import_app(self.app_uri) File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app __import__(module) File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module> from django.core.wsgi import get_wsgi_application ImportError: No module named django.core.wsgi Traceback (most recent call last): File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker worker.init_process() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process self.wsgi = self.app.wsgi() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi self.callable = self.load() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load return self.load_wsgiapp() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp return util.import_app(self.app_uri) File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app __import__(module) File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module> from django.core.wsgi import get_wsgi_application ImportError: No module named django.core.wsgi [2015-10-22 17:28:41 +0000] [32508] [INFO] Worker exiting (pid: 32508) Traceback (most recent call last): File "/srv/webvirtcloud/venv/bin/gunicorn", line 9, in <module> load_entry_point('gunicorn==19.3.0', 'console_scripts', 'gunicorn')() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 74, in run WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 189, in run super(Application, self).run() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 72, in run Arbiter(self).run() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 174, in run self.manage_workers() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 477, in manage_workers self.spawn_workers() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 541, in spawn_workers time.sleep(0.1 * random.random()) File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 214, in handle_chld self.reap_workers() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 459, in reap_workers raise HaltServer(reason, self.WORKER_BOOT_ERROR) gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3> [2015-10-22 17:28:43 +0000] [32509] [INFO] Starting gunicorn 19.3.0 [2015-10-22 17:28:43 +0000] [32509] [INFO] Listening at: http://127.0.0.1:8000 (32509) [2015-10-22 17:28:43 +0000] [32509] [INFO] Using worker: sync [2015-10-22 17:28:43 +0000] [32514] [INFO] Booting worker with pid: 32514 [2015-10-22 17:28:43 +0000] [32514] [ERROR] Exception in worker process: Traceback (most recent call last): File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker worker.init_process() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process self.wsgi = self.app.wsgi() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi self.callable = self.load() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load return self.load_wsgiapp() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp return util.import_app(self.app_uri) File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app __import__(module) File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module> from django.core.wsgi import get_wsgi_application ImportError: No module named django.core.wsgi Traceback (most recent call last): File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker worker.init_process() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process self.wsgi = self.app.wsgi() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi self.callable = self.load() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load return self.load_wsgiapp() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp return util.import_app(self.app_uri) File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app __import__(module) File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module> from django.core.wsgi import get_wsgi_application ImportError: No module named django.core.wsgi [2015-10-22 17:28:43 +0000] [32514] [INFO] Worker exiting (pid: 32514) Traceback (most recent call last): File "/srv/webvirtcloud/venv/bin/gunicorn", line 9, in <module> load_entry_point('gunicorn==19.3.0', 'console_scripts', 'gunicorn')() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 74, in run WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 189, in run super(Application, self).run() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 72, in run Arbiter(self).run() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 174, in run self.manage_workers() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 477, in manage_workers self.spawn_workers() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 541, in spawn_workers time.sleep(0.1 * random.random()) File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 214, in handle_chld self.reap_workers() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 459, in reap_workers raise HaltServer(reason, self.WORKER_BOOT_ERROR) gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3> [2015-10-22 17:28:45 +0000] [32517] [INFO] Starting gunicorn 19.3.0 [2015-10-22 17:28:45 +0000] [32517] [INFO] Listening at: http://127.0.0.1:8000 (32517) [2015-10-22 17:28:45 +0000] [32517] [INFO] Using worker: sync [2015-10-22 17:28:45 +0000] [32523] [INFO] Booting worker with pid: 32523 [2015-10-22 17:28:45 +0000] [32523] [ERROR] Exception in worker process: Traceback (most recent call last): File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker worker.init_process() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process self.wsgi = self.app.wsgi() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi self.callable = self.load() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load return self.load_wsgiapp() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp return util.import_app(self.app_uri) File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app __import__(module) File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module> from django.core.wsgi import get_wsgi_application ImportError: No module named django.core.wsgi Traceback (most recent call last): File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker worker.init_process() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process self.wsgi = self.app.wsgi() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi self.callable = self.load() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load return self.load_wsgiapp() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp return util.import_app(self.app_uri) File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app __import__(module) File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module> from django.core.wsgi import get_wsgi_application ImportError: No module named django.core.wsgi [2015-10-22 17:28:45 +0000] [32523] [INFO] Worker exiting (pid: 32523) Traceback (most recent call last): File "/srv/webvirtcloud/venv/bin/gunicorn", line 9, in <module> load_entry_point('gunicorn==19.3.0', 'console_scripts', 'gunicorn')() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 74, in run WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 189, in run super(Application, self).run() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 72, in run Arbiter(self).run() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 174, in run self.manage_workers() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 477, in manage_workers self.spawn_workers() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 541, in spawn_workers time.sleep(0.1 * random.random()) File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 214, in handle_chld self.reap_workers() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 459, in reap_workers raise HaltServer(reason, self.WORKER_BOOT_ERROR) gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3> [2015-10-22 17:28:48 +0000] [32527] [INFO] Starting gunicorn 19.3.0 [2015-10-22 17:28:48 +0000] [32527] [INFO] Listening at: http://127.0.0.1:8000 (32527) [2015-10-22 17:28:48 +0000] [32527] [INFO] Using worker: sync [2015-10-22 17:28:48 +0000] [32532] [INFO] Booting worker with pid: 32532 [2015-10-22 17:28:48 +0000] [32532] [ERROR] Exception in worker process: Traceback (most recent call last): File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker worker.init_process() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process self.wsgi = self.app.wsgi() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi self.callable = self.load() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load return self.load_wsgiapp() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp return util.import_app(self.app_uri) File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app __import__(module) File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module> from django.core.wsgi import get_wsgi_application ImportError: No module named django.core.wsgi Traceback (most recent call last): File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker worker.init_process() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/workers/base.py", line 118, in init_process self.wsgi = self.app.wsgi() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi self.callable = self.load() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load return self.load_wsgiapp() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp return util.import_app(self.app_uri) File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/util.py", line 355, in import_app __import__(module) File "/srv/webvirtcloud/webvirtcloud/wsgi.py", line 13, in <module> from django.core.wsgi import get_wsgi_application ImportError: No module named django.core.wsgi [2015-10-22 17:28:48 +0000] [32532] [INFO] Worker exiting (pid: 32532) Traceback (most recent call last): File "/srv/webvirtcloud/venv/bin/gunicorn", line 9, in <module> load_entry_point('gunicorn==19.3.0', 'console_scripts', 'gunicorn')() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 74, in run WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 189, in run super(Application, self).run() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/app/base.py", line 72, in run Arbiter(self).run() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 174, in run self.manage_workers() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 477, in manage_workers self.spawn_workers() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 541, in spawn_workers time.sleep(0.1 * random.random()) File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 214, in handle_chld self.reap_workers() File "/srv/webvirtcloud/venv/lib/python2.7/site-packages/gunicorn/arbiter.py", line 459, in reap_workers raise HaltServer(reason, self.WORKER_BOOT_ERROR) gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>``` ``````
Author
Owner

@savichev commented on GitHub (Oct 23, 2015):

ok

cd /srv/webvirtcloud
virtualenv venv
source venv/bin/activate
sudo venv/bin/pip install --upgrade Django==1.8.2
sudo venv/bin/pip install --upgrade websockify==0.6.0
sudo venv/bin/pip install --upgrade gunicorn==19.3.0
sudo venv/bin/pip install --upgrade libvirt-python==1.2.16
sudo venv/bin/pip install --upgrade http://github.com/retspen/retspen.github.io/raw/master/libxml2-python-2.9.1.tar.gz

and

sudo supervisorctl restart
sudo supervisorctl status
<!-- gh-comment-id:150487677 --> @savichev commented on GitHub (Oct 23, 2015): ok ``` cd /srv/webvirtcloud virtualenv venv source venv/bin/activate sudo venv/bin/pip install --upgrade Django==1.8.2 sudo venv/bin/pip install --upgrade websockify==0.6.0 sudo venv/bin/pip install --upgrade gunicorn==19.3.0 sudo venv/bin/pip install --upgrade libvirt-python==1.2.16 sudo venv/bin/pip install --upgrade http://github.com/retspen/retspen.github.io/raw/master/libxml2-python-2.9.1.tar.gz ``` and ``` sudo supervisorctl restart sudo supervisorctl status ```
Author
Owner

@romu70 commented on GitHub (Oct 26, 2015):

Whaou, it works thanks a lot @savichev !! Last issue, I don't get any style, web pages are white with some texts.

<!-- gh-comment-id:151154728 --> @romu70 commented on GitHub (Oct 26, 2015): Whaou, it works thanks a lot @savichev !! Last issue, I don't get any style, web pages are white with some texts.
Author
Owner

@savichev commented on GitHub (Oct 26, 2015):

sudo cat /var/log/supervisor/webvirtcloud.log
<!-- gh-comment-id:151206511 --> @savichev commented on GitHub (Oct 26, 2015): ``` sudo cat /var/log/supervisor/webvirtcloud.log ```
Author
Owner

@romu70 commented on GitHub (Oct 26, 2015):

Here it is:

[2015-10-26 15:24:13 +0000] [10398] [INFO] Starting gunicorn 19.3.0
[2015-10-26 15:24:13 +0000] [10398] [INFO] Listening at: http://127.0.0.1:8000 (10398)
[2015-10-26 15:24:13 +0000] [10398] [INFO] Using worker: sync
[2015-10-26 15:24:13 +0000] [10405] [INFO] Booting worker with pid: 10405
[2015-10-26 15:24:13 +0000] [10406] [INFO] Booting worker with pid: 10406
[2015-10-26 15:24:13 +0000] [10407] [INFO] Booting worker with pid: 10407
[2015-10-26 15:24:13 +0000] [10408] [INFO] Booting worker with pid: 10408
[2015-10-26 15:24:14 +0000] [10409] [INFO] Booting worker with pid: 10409
[2015-10-26 15:24:14 +0000] [10410] [INFO] Booting worker with pid: 10410
[2015-10-26 15:24:14 +0000] [10411] [INFO] Booting worker with pid: 10411
[2015-10-26 15:24:14 +0000] [10412] [INFO] Booting worker with pid: 10412
[2015-10-26 15:24:14 +0000] [10413] [INFO] Booting worker with pid: 10413
[2015-10-26 15:24:14 +0000] [10414] [INFO] Booting worker with pid: 10414
[2015-10-26 15:24:14 +0000] [10415] [INFO] Booting worker with pid: 10415
[2015-10-26 15:24:14 +0000] [10464] [INFO] Booting worker with pid: 10464
[2015-10-26 15:24:14 +0000] [10465] [INFO] Booting worker with pid: 10465
[2015-10-26 15:24:14 +0000] [10473] [INFO] Booting worker with pid: 10473
[2015-10-26 15:24:14 +0000] [10475] [INFO] Booting worker with pid: 10475
[2015-10-26 15:24:14 +0000] [10476] [INFO] Booting worker with pid: 10476
[2015-10-26 15:24:14 +0000] [10477] [INFO] Booting worker with pid: 10477
127.0.0.1 - - [26/Oct/2015:14:25:25 +0000] "GET / HTTP/1.1" 302 - "-" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:25 +0000] "GET /accounts/login/ HTTP/1.1" 200 2062 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:25 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:25 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:25 +0000] "GET /static/css/signin.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:25 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:25 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:26 +0000] "GET /favicon.ico HTTP/1.1" 404 1533 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:29 +0000] "GET / HTTP/1.1" 302 - "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:29 +0000] "GET /accounts/login/ HTTP/1.1" 200 2062 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:29 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:29 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:29 +0000] "GET /static/css/signin.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:29 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:36 +0000] "POST /accounts/login/ HTTP/1.1" 200 2307 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:36 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:36 +0000] "GET /static/css/signin.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:36 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:36 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:36 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:55 +0000] "POST /accounts/login/ HTTP/1.1" 302 - "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:56 +0000] "GET /instances/ HTTP/1.1" 200 7709 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:56 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:56 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:56 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:56 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:56 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:56 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:56 +0000] "GET /static/css/sortable-theme-bootstrap.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:25:56 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:00 +0000] "GET /instances/ HTTP/1.1" 200 7709 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:01 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:01 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:01 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:01 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:01 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:01 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:01 +0000] "GET /static/css/sortable-theme-bootstrap.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:01 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:03 +0000] "GET /accounts/ HTTP/1.1" 200 6543 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:03 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:03 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:03 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:03 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:03 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:03 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:13 +0000] "POST /accounts/ HTTP/1.1" 302 - "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:13 +0000] "GET /accounts/ HTTP/1.1" 200 10676 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:13 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:13 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:13 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:13 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:13 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:13 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:16 +0000] "GET /accounts/logout/ HTTP/1.1" 200 1490 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:16 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:16 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:16 +0000] "GET /static/css/signin.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:16 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:16 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:18 +0000] "GET / HTTP/1.1" 302 - "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:18 +0000] "GET /accounts/login/ HTTP/1.1" 200 2062 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:18 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:18 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:18 +0000] "GET /static/css/signin.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:18 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:18 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:25 +0000] "POST /accounts/login/ HTTP/1.1" 302 - "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:25 +0000] "GET /instances/ HTTP/1.1" 200 5167 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:25 +0000] "GET /static/css/sortable-theme-bootstrap.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:25 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:25 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:25 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:25 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:25 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:25 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:25 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:25 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:28 +0000] "GET /accounts/profile/ HTTP/1.1" 200 8310 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:28 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:28 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:28 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:28 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:28 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:28 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:37 +0000] "GET /instances/ HTTP/1.1" 200 5167 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:37 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:37 +0000] "GET /static/css/sortable-theme-bootstrap.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:37 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:37 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:37 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:37 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:37 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:37 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:37 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:40 +0000] "GET / HTTP/1.1" 302 - "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:40 +0000] "GET /instances/ HTTP/1.1" 200 5167 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:40 +0000] "GET /static/css/sortable-theme-bootstrap.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:40 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:40 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:40 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:40 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:40 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:40 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:40 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:40 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:42 +0000] "GET /accounts/logout/ HTTP/1.1" 200 1490 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:42 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:42 +0000] "GET /static/css/signin.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:42 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:42 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:42 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:43 +0000] "GET / HTTP/1.1" 302 - "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:43 +0000] "GET /accounts/login/ HTTP/1.1" 200 2062 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:43 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:43 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:43 +0000] "GET /static/css/signin.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:43 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:43 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:47 +0000] "POST /accounts/login/ HTTP/1.1" 302 - "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:47 +0000] "GET /instances/ HTTP/1.1" 200 7709 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:47 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:47 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:47 +0000] "GET /static/css/sortable-theme-bootstrap.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:47 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:47 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:47 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:47 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:47 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:47 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:49 +0000] "GET /accounts/profile/ HTTP/1.1" 200 8756 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:49 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:49 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:49 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:49 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:49 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:33:49 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:15 +0000] "POST /accounts/profile/ HTTP/1.1" 302 - "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:15 +0000] "GET /accounts/profile/ HTTP/1.1" 302 - "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:15 +0000] "GET / HTTP/1.1" 302 - "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:15 +0000] "GET /accounts/login/ HTTP/1.1" 200 2062 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:15 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:15 +0000] "GET /static/css/signin.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:15 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:15 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:15 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:24 +0000] "POST /accounts/login/ HTTP/1.1" 302 - "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:24 +0000] "GET /instances/ HTTP/1.1" 200 7709 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:24 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:24 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:24 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:24 +0000] "GET /static/css/sortable-theme-bootstrap.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:24 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:24 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:24 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:24 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:24 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:58 +0000] "GET / HTTP/1.1" 302 - "-" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:58 +0000] "GET /instances/ HTTP/1.1" 200 7709 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:58 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:58 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:58 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:58 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:58 +0000] "GET /static/css/sortable-theme-bootstrap.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:58 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:58 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:58 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:34:58 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:35:01 +0000] "GET /computes/ HTTP/1.1" 200 14560 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:35:01 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/computes/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:35:01 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/computes/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:35:01 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/computes/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:35:01 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/computes/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:35:01 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/computes/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [26/Oct/2015:14:35:01 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/computes/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
<!-- gh-comment-id:151207598 --> @romu70 commented on GitHub (Oct 26, 2015): Here it is: ``` [2015-10-26 15:24:13 +0000] [10398] [INFO] Starting gunicorn 19.3.0 [2015-10-26 15:24:13 +0000] [10398] [INFO] Listening at: http://127.0.0.1:8000 (10398) [2015-10-26 15:24:13 +0000] [10398] [INFO] Using worker: sync [2015-10-26 15:24:13 +0000] [10405] [INFO] Booting worker with pid: 10405 [2015-10-26 15:24:13 +0000] [10406] [INFO] Booting worker with pid: 10406 [2015-10-26 15:24:13 +0000] [10407] [INFO] Booting worker with pid: 10407 [2015-10-26 15:24:13 +0000] [10408] [INFO] Booting worker with pid: 10408 [2015-10-26 15:24:14 +0000] [10409] [INFO] Booting worker with pid: 10409 [2015-10-26 15:24:14 +0000] [10410] [INFO] Booting worker with pid: 10410 [2015-10-26 15:24:14 +0000] [10411] [INFO] Booting worker with pid: 10411 [2015-10-26 15:24:14 +0000] [10412] [INFO] Booting worker with pid: 10412 [2015-10-26 15:24:14 +0000] [10413] [INFO] Booting worker with pid: 10413 [2015-10-26 15:24:14 +0000] [10414] [INFO] Booting worker with pid: 10414 [2015-10-26 15:24:14 +0000] [10415] [INFO] Booting worker with pid: 10415 [2015-10-26 15:24:14 +0000] [10464] [INFO] Booting worker with pid: 10464 [2015-10-26 15:24:14 +0000] [10465] [INFO] Booting worker with pid: 10465 [2015-10-26 15:24:14 +0000] [10473] [INFO] Booting worker with pid: 10473 [2015-10-26 15:24:14 +0000] [10475] [INFO] Booting worker with pid: 10475 [2015-10-26 15:24:14 +0000] [10476] [INFO] Booting worker with pid: 10476 [2015-10-26 15:24:14 +0000] [10477] [INFO] Booting worker with pid: 10477 127.0.0.1 - - [26/Oct/2015:14:25:25 +0000] "GET / HTTP/1.1" 302 - "-" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:25 +0000] "GET /accounts/login/ HTTP/1.1" 200 2062 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:25 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:25 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:25 +0000] "GET /static/css/signin.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:25 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:25 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:26 +0000] "GET /favicon.ico HTTP/1.1" 404 1533 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:29 +0000] "GET / HTTP/1.1" 302 - "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:29 +0000] "GET /accounts/login/ HTTP/1.1" 200 2062 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:29 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:29 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:29 +0000] "GET /static/css/signin.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:29 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:36 +0000] "POST /accounts/login/ HTTP/1.1" 200 2307 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:36 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:36 +0000] "GET /static/css/signin.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:36 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:36 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:36 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:55 +0000] "POST /accounts/login/ HTTP/1.1" 302 - "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:56 +0000] "GET /instances/ HTTP/1.1" 200 7709 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:56 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:56 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:56 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:56 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:56 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:56 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:56 +0000] "GET /static/css/sortable-theme-bootstrap.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:25:56 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:00 +0000] "GET /instances/ HTTP/1.1" 200 7709 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:01 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:01 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:01 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:01 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:01 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:01 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:01 +0000] "GET /static/css/sortable-theme-bootstrap.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:01 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:03 +0000] "GET /accounts/ HTTP/1.1" 200 6543 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:03 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:03 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:03 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:03 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:03 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:03 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:13 +0000] "POST /accounts/ HTTP/1.1" 302 - "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:13 +0000] "GET /accounts/ HTTP/1.1" 200 10676 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:13 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:13 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:13 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:13 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:13 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:13 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:16 +0000] "GET /accounts/logout/ HTTP/1.1" 200 1490 "http://localhost:8000/accounts/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:16 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:16 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:16 +0000] "GET /static/css/signin.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:16 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:16 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:18 +0000] "GET / HTTP/1.1" 302 - "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:18 +0000] "GET /accounts/login/ HTTP/1.1" 200 2062 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:18 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:18 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:18 +0000] "GET /static/css/signin.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:18 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:18 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:25 +0000] "POST /accounts/login/ HTTP/1.1" 302 - "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:25 +0000] "GET /instances/ HTTP/1.1" 200 5167 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:25 +0000] "GET /static/css/sortable-theme-bootstrap.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:25 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:25 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:25 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:25 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:25 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:25 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:25 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:25 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:28 +0000] "GET /accounts/profile/ HTTP/1.1" 200 8310 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:28 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:28 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:28 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:28 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:28 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:28 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:37 +0000] "GET /instances/ HTTP/1.1" 200 5167 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:37 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:37 +0000] "GET /static/css/sortable-theme-bootstrap.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:37 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:37 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:37 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:37 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:37 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:37 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:37 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:40 +0000] "GET / HTTP/1.1" 302 - "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:40 +0000] "GET /instances/ HTTP/1.1" 200 5167 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:40 +0000] "GET /static/css/sortable-theme-bootstrap.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:40 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:40 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:40 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:40 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:40 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:40 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:40 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:40 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:42 +0000] "GET /accounts/logout/ HTTP/1.1" 200 1490 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:42 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:42 +0000] "GET /static/css/signin.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:42 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:42 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:42 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:43 +0000] "GET / HTTP/1.1" 302 - "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:43 +0000] "GET /accounts/login/ HTTP/1.1" 200 2062 "http://localhost:8000/accounts/logout/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:43 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:43 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:43 +0000] "GET /static/css/signin.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:43 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:43 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:47 +0000] "POST /accounts/login/ HTTP/1.1" 302 - "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:47 +0000] "GET /instances/ HTTP/1.1" 200 7709 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:47 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:47 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:47 +0000] "GET /static/css/sortable-theme-bootstrap.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:47 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:47 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:47 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:47 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:47 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:47 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:49 +0000] "GET /accounts/profile/ HTTP/1.1" 200 8756 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:49 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:49 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:49 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:49 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:49 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:33:49 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:15 +0000] "POST /accounts/profile/ HTTP/1.1" 302 - "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:15 +0000] "GET /accounts/profile/ HTTP/1.1" 302 - "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:15 +0000] "GET / HTTP/1.1" 302 - "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:15 +0000] "GET /accounts/login/ HTTP/1.1" 200 2062 "http://localhost:8000/accounts/profile/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:15 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:15 +0000] "GET /static/css/signin.css HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:15 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:15 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:15 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:24 +0000] "POST /accounts/login/ HTTP/1.1" 302 - "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:24 +0000] "GET /instances/ HTTP/1.1" 200 7709 "http://localhost:8000/accounts/login/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:24 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:24 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:24 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:24 +0000] "GET /static/css/sortable-theme-bootstrap.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:24 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:24 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:24 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:24 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:24 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:58 +0000] "GET / HTTP/1.1" 302 - "-" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:58 +0000] "GET /instances/ HTTP/1.1" 200 7709 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:58 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:58 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:58 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:58 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:58 +0000] "GET /static/css/sortable-theme-bootstrap.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:58 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:58 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:58 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:34:58 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:35:01 +0000] "GET /computes/ HTTP/1.1" 200 14560 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:35:01 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/computes/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:35:01 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/computes/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:35:01 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/computes/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:35:01 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/computes/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:35:01 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/computes/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [26/Oct/2015:14:35:01 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/computes/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" ```
Author
Owner

@savichev commented on GitHub (Oct 26, 2015):

sudo cat /etc/nginx/conf.d/webvirtcloud.conf
<!-- gh-comment-id:151210440 --> @savichev commented on GitHub (Oct 26, 2015): ``` sudo cat /etc/nginx/conf.d/webvirtcloud.conf ```
Author
Owner

@romu70 commented on GitHub (Oct 26, 2015):

server {
    listen 80;

    #server_name webvirtcloud.example.com;
    #access_log /var/log/nginx/webvirtcloud-access_log; 

    location /static/ {
        root /srv/webvirtcloud;
        expires max;
    }

    location / {
        proxy_pass http://127.0.0.1:8000;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-for $proxy_add_x_forwarded_for;
        proxy_set_header Host $host:$server_port;
        proxy_set_header X-Forwarded-Proto $remote_addr;
        proxy_connect_timeout 600;
        proxy_read_timeout 600;
        proxy_send_timeout 600;
        client_max_body_size 1024M;
    }
}
<!-- gh-comment-id:151210715 --> @romu70 commented on GitHub (Oct 26, 2015): ``` server { listen 80; #server_name webvirtcloud.example.com; #access_log /var/log/nginx/webvirtcloud-access_log; location /static/ { root /srv/webvirtcloud; expires max; } location / { proxy_pass http://127.0.0.1:8000; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-for $proxy_add_x_forwarded_for; proxy_set_header Host $host:$server_port; proxy_set_header X-Forwarded-Proto $remote_addr; proxy_connect_timeout 600; proxy_read_timeout 600; proxy_send_timeout 600; client_max_body_size 1024M; } } ```
Author
Owner

@romu70 commented on GitHub (Oct 26, 2015):

Think I've to change and uncomment the server_name key.

<!-- gh-comment-id:151211014 --> @romu70 commented on GitHub (Oct 26, 2015): Think I've to change and uncomment the `server_name` key.
Author
Owner

@savichev commented on GitHub (Oct 26, 2015):

Problem solved?

<!-- gh-comment-id:151211561 --> @savichev commented on GitHub (Oct 26, 2015): Problem solved?
Author
Owner

@romu70 commented on GitHub (Oct 27, 2015):

No, still no CSS applied.

<!-- gh-comment-id:151453768 --> @romu70 commented on GitHub (Oct 27, 2015): No, still no CSS applied.
Author
Owner

@savichev commented on GitHub (Oct 27, 2015):

uncomment line

access_log /var/log/nginx/webvirtcloud-access_log;

and add after

error_log /var/log/nginx/webvirtcloud-error_log;

in webvirtcloud.conf

restart nginix, browse webvirtcloud site and type logs nginx

sudo cat /var/log/nginx/webvirtcloud-access_log

and

sudo cat /var/log/nginx/webvirtcloud-error_log
<!-- gh-comment-id:151464350 --> @savichev commented on GitHub (Oct 27, 2015): uncomment line ``` access_log /var/log/nginx/webvirtcloud-access_log; ``` and add after ``` error_log /var/log/nginx/webvirtcloud-error_log; ``` in webvirtcloud.conf restart nginix, browse webvirtcloud site and type logs nginx ``` sudo cat /var/log/nginx/webvirtcloud-access_log ``` and ``` sudo cat /var/log/nginx/webvirtcloud-error_log ```
Author
Owner

@romu70 commented on GitHub (Oct 27, 2015):

Those 2 files always stay empty now nginx starts correctly. Double checked the configuration, no way to get some traces.

server {
    listen 80;

    server_name salomon.#domain#;
    access_log /var/log/nginx/webvirtcloud-access_log; 
    error_log /var/log/nginx/webvirtcloud-error_log;

    location /static/ {
        root /srv/webvirtcloud;
        expires max;
    }

    location / {
        proxy_pass http://#ip#:8000;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-for $proxy_add_x_forwarded_for;
        proxy_set_header Host $host:$server_port;
        proxy_set_header X-Forwarded-Proto $remote_addr;
        proxy_connect_timeout 600;
        proxy_read_timeout 600;
        proxy_send_timeout 600;
        client_max_body_size 1024M;
    }
}
<!-- gh-comment-id:151489962 --> @romu70 commented on GitHub (Oct 27, 2015): Those 2 files always stay empty now nginx starts correctly. Double checked the configuration, no way to get some traces. ``` server { listen 80; server_name salomon.#domain#; access_log /var/log/nginx/webvirtcloud-access_log; error_log /var/log/nginx/webvirtcloud-error_log; location /static/ { root /srv/webvirtcloud; expires max; } location / { proxy_pass http://#ip#:8000; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-for $proxy_add_x_forwarded_for; proxy_set_header Host $host:$server_port; proxy_set_header X-Forwarded-Proto $remote_addr; proxy_connect_timeout 600; proxy_read_timeout 600; proxy_send_timeout 600; client_max_body_size 1024M; } } ```
Author
Owner

@savichev commented on GitHub (Oct 28, 2015):

modify file webvirtcloud.conf

server {
    listen 80 default_server;
    listen [::]:80 default_server;

    server_name _;
    access_log /var/log/nginx/webvirtcloud-access_log; 
    error_log /var/log/nginx/webvirtcloud-error_log;

    location /static/ {
        root /srv/webvirtcloud;
        expires max;
    }

    location / {
        proxy_pass http://127.0.0.1:8000;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-for $proxy_add_x_forwarded_for;
        proxy_set_header Host $host:$server_port;
        proxy_set_header X-Forwarded-Proto $remote_addr;
        proxy_connect_timeout 600;
        proxy_read_timeout 600;
        proxy_send_timeout 600;
        client_max_body_size 1024M;
    }
}
rm /etc/nginx/conf.d/default.conf
sudo service nginx restart
sudo service nginx status

after

browse http://[$IP_HOST]

<!-- gh-comment-id:151717548 --> @savichev commented on GitHub (Oct 28, 2015): modify file webvirtcloud.conf ``` server { listen 80 default_server; listen [::]:80 default_server; server_name _; access_log /var/log/nginx/webvirtcloud-access_log; error_log /var/log/nginx/webvirtcloud-error_log; location /static/ { root /srv/webvirtcloud; expires max; } location / { proxy_pass http://127.0.0.1:8000; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-for $proxy_add_x_forwarded_for; proxy_set_header Host $host:$server_port; proxy_set_header X-Forwarded-Proto $remote_addr; proxy_connect_timeout 600; proxy_read_timeout 600; proxy_send_timeout 600; client_max_body_size 1024M; } } ``` ``` rm /etc/nginx/conf.d/default.conf sudo service nginx restart sudo service nginx status ``` after browse http://[$IP_HOST]
Author
Owner

@romu70 commented on GitHub (Oct 28, 2015):

Ok, here what I did from your advices (I'm on CentOS, things are a bit different).

I commented out the default nginx configuration which is in /etc/nginx/nginx.conf:

http {
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 2048;

    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;

    # Load modular configuration files from the /etc/nginx/conf.d directory.
    # See http://nginx.org/en/docs/ngx_core_module.html#include
    # for more information.
    include /etc/nginx/conf.d/*.conf;

#    server {
#        listen       80 default_server;
#        listen       [::]:80 default_server;
#        server_name  _;
#        root         /usr/share/nginx/html;

        # Load configuration files for the default server block.
#        include /etc/nginx/default.d/*.conf;

#        location / {
#        }

#        error_page 404 /404.html;
#            location = /40x.html {
#        }

#        error_page 500 502 503 504 /50x.html;
#            location = /50x.html {
#        }
#    }
}

Then, I set the webvirtcloud.conf file as adviced and restarted nginx, status:

nginx.service - The nginx HTTP and reverse proxy server
   Loaded: loaded (/usr/lib/systemd/system/nginx.service; disabled)
   Active: active (running) since Wed 2015-10-28 11:05:16 CET; 8min ago
 Main PID: 3353 (nginx)
   CGroup: /system.slice/nginx.service
           ├─3353 nginx: master process /usr/sbin/nginx
           ├─3354 nginx: worker process
           ├─3355 nginx: worker process
           ├─3356 nginx: worker process
           ├─3357 nginx: worker process
           ├─3358 nginx: worker process
           ├─3359 nginx: worker process
           ├─3360 nginx: worker process
           └─3361 nginx: worker process

Oct 28 11:05:16 salomon.#domain# nginx[3348]: nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
Oct 28 11:05:16 salomon.#domain# nginx[3348]: nginx: configuration file /etc/nginx/nginx.conf test is successful
Oct 28 11:05:16 salomon.#domain# systemd[1]: Started The nginx HTTP and reverse proxy server.```

result: same, no CSS applied.
<!-- gh-comment-id:151790968 --> @romu70 commented on GitHub (Oct 28, 2015): Ok, here what I did from your advices (I'm on CentOS, things are a bit different). I commented out the default nginx configuration which is in `/etc/nginx/nginx.conf`: ``` http { log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; include /etc/nginx/mime.types; default_type application/octet-stream; # Load modular configuration files from the /etc/nginx/conf.d directory. # See http://nginx.org/en/docs/ngx_core_module.html#include # for more information. include /etc/nginx/conf.d/*.conf; # server { # listen 80 default_server; # listen [::]:80 default_server; # server_name _; # root /usr/share/nginx/html; # Load configuration files for the default server block. # include /etc/nginx/default.d/*.conf; # location / { # } # error_page 404 /404.html; # location = /40x.html { # } # error_page 500 502 503 504 /50x.html; # location = /50x.html { # } # } } ``` Then, I set the webvirtcloud.conf file as adviced and restarted nginx, status: `````` nginx.service - The nginx HTTP and reverse proxy server Loaded: loaded (/usr/lib/systemd/system/nginx.service; disabled) Active: active (running) since Wed 2015-10-28 11:05:16 CET; 8min ago Main PID: 3353 (nginx) CGroup: /system.slice/nginx.service ├─3353 nginx: master process /usr/sbin/nginx ├─3354 nginx: worker process ├─3355 nginx: worker process ├─3356 nginx: worker process ├─3357 nginx: worker process ├─3358 nginx: worker process ├─3359 nginx: worker process ├─3360 nginx: worker process └─3361 nginx: worker process Oct 28 11:05:16 salomon.#domain# nginx[3348]: nginx: the configuration file /etc/nginx/nginx.conf syntax is ok Oct 28 11:05:16 salomon.#domain# nginx[3348]: nginx: configuration file /etc/nginx/nginx.conf test is successful Oct 28 11:05:16 salomon.#domain# systemd[1]: Started The nginx HTTP and reverse proxy server.``` result: same, no CSS applied. ``````
Author
Owner

@savichev commented on GitHub (Oct 28, 2015):

sudo cat /var/log/nginx/webvirtcloud-error_log;

section in nginx not work

location /static/ {
...
}

you browse

http://localhost:8000/

???
need

http://localhost/
<!-- gh-comment-id:151793876 --> @savichev commented on GitHub (Oct 28, 2015): ``` sudo cat /var/log/nginx/webvirtcloud-error_log; ``` section in nginx not work ``` location /static/ { ... } ``` you browse ``` http://localhost:8000/ ``` ??? need ``` http://localhost/ ```
Author
Owner

@romu70 commented on GitHub (Oct 28, 2015):

No error, file size is 0. I try to browse mozilla.org to check CSS is allowed by the browser, and it works well. I'm trying to install another browser to see if things are differents.

<!-- gh-comment-id:151794370 --> @romu70 commented on GitHub (Oct 28, 2015): No error, file size is 0. I try to browse mozilla.org to check CSS is allowed by the browser, and it works well. I'm trying to install another browser to see if things are differents.
Author
Owner

@savichev commented on GitHub (Oct 28, 2015):

http://localhost:80/
sudo cat /var/log/supervisor/webvirtcloud.log
<!-- gh-comment-id:151794846 --> @savichev commented on GitHub (Oct 28, 2015): ``` http://localhost:80/ ``` ``` sudo cat /var/log/supervisor/webvirtcloud.log ```
Author
Owner

@romu70 commented on GitHub (Oct 28, 2015):

-> "Bad gateway"

<!-- gh-comment-id:151798816 --> @romu70 commented on GitHub (Oct 28, 2015): -> "Bad gateway"
Author
Owner

@savichev commented on GitHub (Oct 28, 2015):

ok!
https://github.com/retspen/webvirtcloud/issues/60#issuecomment-151489962
must be

server_name localhost;

and

proxy_pass http://127.0.0.1:8000;
sudo service nginx restart

browse http://localhost/

sudo cat /var/log/nginx/webvirtcloud-error_log
<!-- gh-comment-id:151804673 --> @savichev commented on GitHub (Oct 28, 2015): ok! https://github.com/retspen/webvirtcloud/issues/60#issuecomment-151489962 must be ``` server_name localhost; ``` and ``` proxy_pass http://127.0.0.1:8000; ``` ``` sudo service nginx restart ``` browse **http://localhost/** ``` sudo cat /var/log/nginx/webvirtcloud-error_log ```
Author
Owner

@romu70 commented on GitHub (Oct 28, 2015):

Here it is:

2015/10/28 11:36:52 [crit] 3355#0: *1 connect() to 127.0.0.1:8000 failed (13: Permission denied) while connecting to upstream, client: ::1, server: _, request: "GET / HTTP/1.1", upstream: "http://127.0.0.1:8000/", host: "localhost"
2015/10/28 11:36:52 [crit] 3355#0: *1 connect() to 127.0.0.1:8000 failed (13: Permission denied) while connecting to upstream, client: ::1, server: _, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:8000/favicon.ico", host: "localhost"
2015/10/28 11:36:52 [crit] 3355#0: *1 connect() to 127.0.0.1:8000 failed (13: Permission denied) while connecting to upstream, client: ::1, server: _, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:8000/favicon.ico", host: "localhost"
2015/10/28 11:37:18 [crit] 3355#0: *1 connect() to 127.0.0.1:8000 failed (13: Permission denied) while connecting to upstream, client: ::1, server: _, request: "GET / HTTP/1.1", upstream: "http://127.0.0.1:8000/", host: "localhost"
2015/10/28 11:49:04 [crit] 4280#0: *1 connect() to 127.0.0.1:8000 failed (13: Permission denied) while connecting to upstream, client: ::1, server: _, request: "GET / HTTP/1.1", upstream: "http://127.0.0.1:8000/", host: "localhost"
2015/10/28 11:49:04 [crit] 4280#0: *1 connect() to 127.0.0.1:8000 failed (13: Permission denied) while connecting to upstream, client: ::1, server: _, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:8000/favicon.ico", host: "localhost", referrer: "http://localhost/"
2015/10/28 11:49:11 [crit] 4280#0: *1 connect() to 127.0.0.1:8000 failed (13: Permission denied) while connecting to upstream, client: ::1, server: _, request: "GET / HTTP/1.1", upstream: "http://127.0.0.1:8000/", host: "localhost"
2015/10/28 11:49:11 [crit] 4280#0: *1 connect() to 127.0.0.1:8000 failed (13: Permission denied) while connecting to upstream, client: ::1, server: _, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:8000/favicon.ico", host: "localhost", referrer: "http://localhost/"
2015/10/28 11:49:24 [crit] 4280#0: *9 connect() to 127.0.0.1:8000 failed (13: Permission denied) while connecting to upstream, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "http://127.0.0.1:8000/", host: "localhost"
2015/10/28 11:49:32 [crit] 4280#0: *9 connect() to 127.0.0.1:8000 failed (13: Permission denied) while connecting to upstream, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "http://127.0.0.1:8000/", host: "localhost"
[ad```
<!-- gh-comment-id:151858208 --> @romu70 commented on GitHub (Oct 28, 2015): Here it is: `````` 2015/10/28 11:36:52 [crit] 3355#0: *1 connect() to 127.0.0.1:8000 failed (13: Permission denied) while connecting to upstream, client: ::1, server: _, request: "GET / HTTP/1.1", upstream: "http://127.0.0.1:8000/", host: "localhost" 2015/10/28 11:36:52 [crit] 3355#0: *1 connect() to 127.0.0.1:8000 failed (13: Permission denied) while connecting to upstream, client: ::1, server: _, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:8000/favicon.ico", host: "localhost" 2015/10/28 11:36:52 [crit] 3355#0: *1 connect() to 127.0.0.1:8000 failed (13: Permission denied) while connecting to upstream, client: ::1, server: _, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:8000/favicon.ico", host: "localhost" 2015/10/28 11:37:18 [crit] 3355#0: *1 connect() to 127.0.0.1:8000 failed (13: Permission denied) while connecting to upstream, client: ::1, server: _, request: "GET / HTTP/1.1", upstream: "http://127.0.0.1:8000/", host: "localhost" 2015/10/28 11:49:04 [crit] 4280#0: *1 connect() to 127.0.0.1:8000 failed (13: Permission denied) while connecting to upstream, client: ::1, server: _, request: "GET / HTTP/1.1", upstream: "http://127.0.0.1:8000/", host: "localhost" 2015/10/28 11:49:04 [crit] 4280#0: *1 connect() to 127.0.0.1:8000 failed (13: Permission denied) while connecting to upstream, client: ::1, server: _, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:8000/favicon.ico", host: "localhost", referrer: "http://localhost/" 2015/10/28 11:49:11 [crit] 4280#0: *1 connect() to 127.0.0.1:8000 failed (13: Permission denied) while connecting to upstream, client: ::1, server: _, request: "GET / HTTP/1.1", upstream: "http://127.0.0.1:8000/", host: "localhost" 2015/10/28 11:49:11 [crit] 4280#0: *1 connect() to 127.0.0.1:8000 failed (13: Permission denied) while connecting to upstream, client: ::1, server: _, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:8000/favicon.ico", host: "localhost", referrer: "http://localhost/" 2015/10/28 11:49:24 [crit] 4280#0: *9 connect() to 127.0.0.1:8000 failed (13: Permission denied) while connecting to upstream, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "http://127.0.0.1:8000/", host: "localhost" 2015/10/28 11:49:32 [crit] 4280#0: *9 connect() to 127.0.0.1:8000 failed (13: Permission denied) while connecting to upstream, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "http://127.0.0.1:8000/", host: "localhost" [ad``` ``````
Author
Owner

@savichev commented on GitHub (Oct 28, 2015):

sudo cat /var/log/supervisor/webvirtcloud.log

and

sudo cat /var/log/audit/audit.log | grep nginx | grep denied
<!-- gh-comment-id:151907951 --> @savichev commented on GitHub (Oct 28, 2015): ``` sudo cat /var/log/supervisor/webvirtcloud.log ``` and ``` sudo cat /var/log/audit/audit.log | grep nginx | grep denied ```
Author
Owner

@romu70 commented on GitHub (Oct 28, 2015):

Just saw the edition of your last comment. Here is the /var/log/supervisor/webvirtcloud.log:

127.0.0.1 - - [28/Oct/2015:16:54:35 +0000] "GET / HTTP/1.1" 302 - "-" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [28/Oct/2015:16:54:35 +0000] "GET /instances/ HTTP/1.1" 200 7709 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [28/Oct/2015:16:54:35 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [28/Oct/2015:16:54:35 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [28/Oct/2015:16:54:35 +0000] "GET /static/css/sortable-theme-bootstrap.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [28/Oct/2015:16:54:35 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [28/Oct/2015:16:54:35 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [28/Oct/2015:16:54:36 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [28/Oct/2015:16:54:36 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [28/Oct/2015:16:54:36 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [28/Oct/2015:16:54:36 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [28/Oct/2015:16:55:16 +0000] "GET /instances/ HTTP/1.1" 200 7709 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [28/Oct/2015:16:55:16 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [28/Oct/2015:16:55:16 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [28/Oct/2015:16:55:16 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [28/Oct/2015:16:55:16 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [28/Oct/2015:16:55:16 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [28/Oct/2015:16:55:16 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [28/Oct/2015:16:55:16 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [28/Oct/2015:16:55:16 +0000] "GET /static/css/sortable-theme-bootstrap.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
127.0.0.1 - - [28/Oct/2015:16:55:16 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0"
<!-- gh-comment-id:151908858 --> @romu70 commented on GitHub (Oct 28, 2015): Just saw the edition of your last comment. Here is the /var/log/supervisor/webvirtcloud.log: ``` 127.0.0.1 - - [28/Oct/2015:16:54:35 +0000] "GET / HTTP/1.1" 302 - "-" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [28/Oct/2015:16:54:35 +0000] "GET /instances/ HTTP/1.1" 200 7709 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [28/Oct/2015:16:54:35 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [28/Oct/2015:16:54:35 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [28/Oct/2015:16:54:35 +0000] "GET /static/css/sortable-theme-bootstrap.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [28/Oct/2015:16:54:35 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [28/Oct/2015:16:54:35 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [28/Oct/2015:16:54:36 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [28/Oct/2015:16:54:36 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [28/Oct/2015:16:54:36 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [28/Oct/2015:16:54:36 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [28/Oct/2015:16:55:16 +0000] "GET /instances/ HTTP/1.1" 200 7709 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [28/Oct/2015:16:55:16 +0000] "GET /static/css/bootstrap.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [28/Oct/2015:16:55:16 +0000] "GET /static/js/jquery.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [28/Oct/2015:16:55:16 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [28/Oct/2015:16:55:16 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [28/Oct/2015:16:55:16 +0000] "GET /static/js/bootstrap.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [28/Oct/2015:16:55:16 +0000] "GET /static/js/sortable.min.js HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [28/Oct/2015:16:55:16 +0000] "GET /static/css/font-awesome.min.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [28/Oct/2015:16:55:16 +0000] "GET /static/css/sortable-theme-bootstrap.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" 127.0.0.1 - - [28/Oct/2015:16:55:16 +0000] "GET /static/css/webvirtcloud.css HTTP/1.1" 404 1533 "http://localhost:8000/instances/" "Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0" ```
Author
Owner

@savichev commented on GitHub (Oct 28, 2015):

You browse only http://localhost/ not http://localhost:8000/?

<!-- gh-comment-id:151909419 --> @savichev commented on GitHub (Oct 28, 2015): You browse only **http://localhost/** not http://localhost:8000/?
Author
Owner

@romu70 commented on GitHub (Oct 28, 2015):

http://localhost/ -> Bad Gateway

<!-- gh-comment-id:151909603 --> @romu70 commented on GitHub (Oct 28, 2015): http://localhost/ -> Bad Gateway
Author
Owner

@savichev commented on GitHub (Oct 28, 2015):

sudo cat /var/log/audit/audit.log | grep nginx | grep denied
<!-- gh-comment-id:151909732 --> @savichev commented on GitHub (Oct 28, 2015): ``` sudo cat /var/log/audit/audit.log | grep nginx | grep denied ```
Author
Owner

@romu70 commented on GitHub (Oct 28, 2015):

type=AVC msg=audit(1446028612.391:2138): avc:  denied  { name_connect } for  pid=3355 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket
type=AVC msg=audit(1446028612.450:2139): avc:  denied  { name_connect } for  pid=3355 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket
type=AVC msg=audit(1446028612.458:2140): avc:  denied  { name_connect } for  pid=3355 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket
type=AVC msg=audit(1446028638.554:2142): avc:  denied  { name_connect } for  pid=3355 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket
type=AVC msg=audit(1446029344.238:559): avc:  denied  { name_connect } for  pid=4280 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket
type=AVC msg=audit(1446029344.326:560): avc:  denied  { name_connect } for  pid=4280 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket
type=AVC msg=audit(1446029351.413:567): avc:  denied  { name_connect } for  pid=4280 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket
type=AVC msg=audit(1446029351.439:568): avc:  denied  { name_connect } for  pid=4280 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket
type=AVC msg=audit(1446029364.147:569): avc:  denied  { name_connect } for  pid=4280 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket
type=AVC msg=audit(1446029372.548:570): avc:  denied  { name_connect } for  pid=4280 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket
type=AVC msg=audit(1446051549.943:978): avc:  denied  { name_connect } for  pid=12863 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket
type=AVC msg=audit(1446051565.993:979): avc:  denied  { name_connect } for  pid=12863 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket
<!-- gh-comment-id:151910023 --> @romu70 commented on GitHub (Oct 28, 2015): ``` type=AVC msg=audit(1446028612.391:2138): avc: denied { name_connect } for pid=3355 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket type=AVC msg=audit(1446028612.450:2139): avc: denied { name_connect } for pid=3355 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket type=AVC msg=audit(1446028612.458:2140): avc: denied { name_connect } for pid=3355 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket type=AVC msg=audit(1446028638.554:2142): avc: denied { name_connect } for pid=3355 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket type=AVC msg=audit(1446029344.238:559): avc: denied { name_connect } for pid=4280 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket type=AVC msg=audit(1446029344.326:560): avc: denied { name_connect } for pid=4280 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket type=AVC msg=audit(1446029351.413:567): avc: denied { name_connect } for pid=4280 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket type=AVC msg=audit(1446029351.439:568): avc: denied { name_connect } for pid=4280 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket type=AVC msg=audit(1446029364.147:569): avc: denied { name_connect } for pid=4280 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket type=AVC msg=audit(1446029372.548:570): avc: denied { name_connect } for pid=4280 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket type=AVC msg=audit(1446051549.943:978): avc: denied { name_connect } for pid=12863 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket type=AVC msg=audit(1446051565.993:979): avc: denied { name_connect } for pid=12863 comm="nginx" dest=8000 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:soundd_port_t:s0 tclass=tcp_socket ```
Author
Owner

@savichev commented on GitHub (Oct 28, 2015):

ok!
probe

sudo setsebool httpd_can_network_connect on

sudo getsebool -a | grep httpd
<!-- gh-comment-id:151910486 --> @savichev commented on GitHub (Oct 28, 2015): ok! probe ``` sudo setsebool httpd_can_network_connect on sudo getsebool -a | grep httpd ```
Author
Owner

@romu70 commented on GitHub (Oct 28, 2015):

It works...almost. Browsing http://localhost/ leads to the WebVirtCloud homepage, but still no CSS.

<!-- gh-comment-id:151910825 --> @romu70 commented on GitHub (Oct 28, 2015): It works...almost. Browsing http://localhost/ leads to the WebVirtCloud homepage, but still no CSS.
Author
Owner

@savichev commented on GitHub (Oct 28, 2015):

ok!
change persist use the -P flag

sudo setsebool httpd_can_network_connect on -P
sudo cat /var/log/nginx/webvirtcloud-error_log
<!-- gh-comment-id:151911296 --> @savichev commented on GitHub (Oct 28, 2015): ok! change persist use the -P flag ``` sudo setsebool httpd_can_network_connect on -P ``` ``` sudo cat /var/log/nginx/webvirtcloud-error_log ```
Author
Owner

@romu70 commented on GitHub (Oct 29, 2015):

2015/10/29 10:58:42 [error] 12870#0: *12 open() "/srv/webvirtcloud/static/css/bootstrap.min.css" failed (13: Permission denied), client: 127.0.0.1, server: localhost, request: "GET /static/css/bootstrap.min.css HTTP/1.1", host: "localhost", referrer: "http://localhost/instances/"
2015/10/29 10:58:42 [error] 12870#0: *14 open() "/srv/webvirtcloud/static/css/webvirtcloud.css" failed (13: Permission denied), client: 127.0.0.1, server: localhost, request: "GET /static/css/webvirtcloud.css HTTP/1.1", host: "localhost", referrer: "http://localhost/instances/"
2015/10/29 10:58:42 [error] 12870#0: *12 open() "/srv/webvirtcloud/static/css/sortable-theme-bootstrap.css" failed (13: Permission denied), client: 127.0.0.1, server: localhost, request: "GET /static/css/sortable-theme-bootstrap.css HTTP/1.1", host: "localhost", referrer: "http://localhost/instances/"
2015/10/29 10:58:42 [error] 12870#0: *12 open() "/srv/webvirtcloud/static/css/font-awesome.min.css" failed (13: Permission denied), client: 127.0.0.1, server: localhost, request: "GET /static/css/font-awesome.min.css HTTP/1.1", host: "localhost", referrer: "http://localhost/instances/"
2015/10/29 10:58:42 [error] 12870#0: *12 open() "/srv/webvirtcloud/static/js/jquery.js" failed (13: Permission denied), client: 127.0.0.1, server: localhost, request: "GET /static/js/jquery.js HTTP/1.1", host: "localhost", referrer: "http://localhost/instances/"
2015/10/29 10:58:42 [error] 12870#0: *12 open() "/srv/webvirtcloud/static/js/bootstrap.min.js" failed (13: Permission denied), client: 127.0.0.1, server: localhost, request: "GET /static/js/bootstrap.min.js HTTP/1.1", host: "localhost", referrer: "http://localhost/instances/"
2015/10/29 10:58:42 [error] 12870#0: *12 open() "/srv/webvirtcloud/static/js/sortable.min.js" failed (13: Permission denied), client: 127.0.0.1, server: localhost, request: "GET /static/js/sortable.min.js HTTP/1.1", host: "localhost", referrer: "http://localhost/instances/"
2015/10/29 10:58:42 [error] 12870#0: *12 open() "/srv/webvirtcloud/static/js/bootstrap.min.js" failed (13: Permission denied), client: 127.0.0.1, server: localhost, request: "GET /static/js/bootstrap.min.js HTTP/1.1", host: "localhost", referrer: "http://localhost/instances/"
2015/10/29 10:58:42 [error] 12870#0: *12 open() "/srv/webvirtcloud/static/js/sortable.min.js" failed (13: Permission denied), client: 127.0.0.1, server: localhost, request: "GET /static/js/sortable.min.js HTTP/1.1", host: "localhost", referrer: "http://localhost/instances/"

When I see all of this discussion, I wonder if it wouldn't be easier to go with a *buntu distribution over CentOS. I will have a second server to setup and I'm afraid to face the same difficulties with CentOS (and thanks a lot for your time, I will never thank you enough !).

<!-- gh-comment-id:152133610 --> @romu70 commented on GitHub (Oct 29, 2015): ``` 2015/10/29 10:58:42 [error] 12870#0: *12 open() "/srv/webvirtcloud/static/css/bootstrap.min.css" failed (13: Permission denied), client: 127.0.0.1, server: localhost, request: "GET /static/css/bootstrap.min.css HTTP/1.1", host: "localhost", referrer: "http://localhost/instances/" 2015/10/29 10:58:42 [error] 12870#0: *14 open() "/srv/webvirtcloud/static/css/webvirtcloud.css" failed (13: Permission denied), client: 127.0.0.1, server: localhost, request: "GET /static/css/webvirtcloud.css HTTP/1.1", host: "localhost", referrer: "http://localhost/instances/" 2015/10/29 10:58:42 [error] 12870#0: *12 open() "/srv/webvirtcloud/static/css/sortable-theme-bootstrap.css" failed (13: Permission denied), client: 127.0.0.1, server: localhost, request: "GET /static/css/sortable-theme-bootstrap.css HTTP/1.1", host: "localhost", referrer: "http://localhost/instances/" 2015/10/29 10:58:42 [error] 12870#0: *12 open() "/srv/webvirtcloud/static/css/font-awesome.min.css" failed (13: Permission denied), client: 127.0.0.1, server: localhost, request: "GET /static/css/font-awesome.min.css HTTP/1.1", host: "localhost", referrer: "http://localhost/instances/" 2015/10/29 10:58:42 [error] 12870#0: *12 open() "/srv/webvirtcloud/static/js/jquery.js" failed (13: Permission denied), client: 127.0.0.1, server: localhost, request: "GET /static/js/jquery.js HTTP/1.1", host: "localhost", referrer: "http://localhost/instances/" 2015/10/29 10:58:42 [error] 12870#0: *12 open() "/srv/webvirtcloud/static/js/bootstrap.min.js" failed (13: Permission denied), client: 127.0.0.1, server: localhost, request: "GET /static/js/bootstrap.min.js HTTP/1.1", host: "localhost", referrer: "http://localhost/instances/" 2015/10/29 10:58:42 [error] 12870#0: *12 open() "/srv/webvirtcloud/static/js/sortable.min.js" failed (13: Permission denied), client: 127.0.0.1, server: localhost, request: "GET /static/js/sortable.min.js HTTP/1.1", host: "localhost", referrer: "http://localhost/instances/" 2015/10/29 10:58:42 [error] 12870#0: *12 open() "/srv/webvirtcloud/static/js/bootstrap.min.js" failed (13: Permission denied), client: 127.0.0.1, server: localhost, request: "GET /static/js/bootstrap.min.js HTTP/1.1", host: "localhost", referrer: "http://localhost/instances/" 2015/10/29 10:58:42 [error] 12870#0: *12 open() "/srv/webvirtcloud/static/js/sortable.min.js" failed (13: Permission denied), client: 127.0.0.1, server: localhost, request: "GET /static/js/sortable.min.js HTTP/1.1", host: "localhost", referrer: "http://localhost/instances/" ``` When I see all of this discussion, I wonder if it wouldn't be easier to go with a *buntu distribution over CentOS. I will have a second server to setup and I'm afraid to face the same difficulties with CentOS (and thanks a lot for your time, I will never thank you enough !).
Author
Owner

@savichev commented on GitHub (Oct 29, 2015):

ls -la /srv/webvirtcloud/static/css
<!-- gh-comment-id:152135954 --> @savichev commented on GitHub (Oct 29, 2015): ``` ls -la /srv/webvirtcloud/static/css ```
Author
Owner

@romu70 commented on GitHub (Oct 29, 2015):

drwxr-xr-x. 3 nginx nginx   4096 Oct 21 11:39 .
drwxr-xr-x. 5 nginx nginx     55 Oct 21 11:39 ..
-rwxr-xr-x. 1 nginx nginx 117150 Oct 21 11:39 bootstrap.min.css
-rw-r--r--. 1 nginx nginx    843 Oct 21 11:39 bootstrap-multiselect.css
-rw-r--r--. 1 nginx nginx  23739 Oct 21 11:39 font-awesome.min.css
drwxr-xr-x. 2 nginx nginx     23 Oct 21 11:39 plugins
-rw-r--r--. 1 nginx nginx    904 Oct 21 11:39 signin.css
-rwxr-xr-x. 1 nginx nginx   2746 Oct 21 11:39 sortable-theme-bootstrap.css
-rw-r--r--. 1 nginx nginx   1827 Oct 21 11:39 webvirtcloud.css
<!-- gh-comment-id:152136200 --> @romu70 commented on GitHub (Oct 29, 2015): ``` drwxr-xr-x. 3 nginx nginx 4096 Oct 21 11:39 . drwxr-xr-x. 5 nginx nginx 55 Oct 21 11:39 .. -rwxr-xr-x. 1 nginx nginx 117150 Oct 21 11:39 bootstrap.min.css -rw-r--r--. 1 nginx nginx 843 Oct 21 11:39 bootstrap-multiselect.css -rw-r--r--. 1 nginx nginx 23739 Oct 21 11:39 font-awesome.min.css drwxr-xr-x. 2 nginx nginx 23 Oct 21 11:39 plugins -rw-r--r--. 1 nginx nginx 904 Oct 21 11:39 signin.css -rwxr-xr-x. 1 nginx nginx 2746 Oct 21 11:39 sortable-theme-bootstrap.css -rw-r--r--. 1 nginx nginx 1827 Oct 21 11:39 webvirtcloud.css ```
Author
Owner

@savichev commented on GitHub (Oct 29, 2015):

sudo cat /etc/nginx/nginx.conf

need option

user nginx nginx;

http://nginx.org/en/docs/ngx_core_module.html

if not? add 1 line.(section above http {} ) Restart nginix

<!-- gh-comment-id:152137110 --> @savichev commented on GitHub (Oct 29, 2015): ``` sudo cat /etc/nginx/nginx.conf ``` need option ``` user nginx nginx; ``` http://nginx.org/en/docs/ngx_core_module.html if not? add 1 line.(section above http {} ) Restart nginix
Author
Owner

@romu70 commented on GitHub (Oct 29, 2015):

There was only user nginx; at the beginning of the file, so I changed it to user nginx nginx; and restarted the nginx service, same, no CSS.

<!-- gh-comment-id:152137762 --> @romu70 commented on GitHub (Oct 29, 2015): There was only `user nginx;` at the beginning of the file, so I changed it to `user nginx nginx;` and restarted the nginx service, same, no CSS.
Author
Owner

@savichev commented on GitHub (Oct 29, 2015):

sudo cat /var/log/audit/audit.log | grep nginx | grep denied
<!-- gh-comment-id:152137906 --> @savichev commented on GitHub (Oct 29, 2015): ``` sudo cat /var/log/audit/audit.log | grep nginx | grep denied ```
Author
Owner

@romu70 commented on GitHub (Oct 29, 2015):

The last 3 traces:

type=AVC msg=audit(1446114216.793:2044): avc:  denied  { read } for  pid=6153 comm="nginx" name="jquery.js" dev="dm-1" ino=201895238 scontext=system_u:system_r:httpd_t:s0 tcontext=unconfined_u:object_r:var_t:s0 tclass=file
type=AVC msg=audit(1446114216.793:2045): avc:  denied  { read } for  pid=6153 comm="nginx" name="bootstrap.min.js" dev="dm-1" ino=201871139 scontext=system_u:system_r:httpd_t:s0 tcontext=unconfined_u:object_r:var_t:s0 tclass=file
type=AVC msg=audit(1446114216.795:2046): avc:  denied  { read } for  pid=6153 comm="nginx" name="sortable.min.js" dev="dm-1" ino=201895241 scontext=system_u:system_r:httpd_t:s0 tcontext=unconfined_u:object_r:var_t:s0 tclass=file
<!-- gh-comment-id:152138402 --> @romu70 commented on GitHub (Oct 29, 2015): The last 3 traces: ``` type=AVC msg=audit(1446114216.793:2044): avc: denied { read } for pid=6153 comm="nginx" name="jquery.js" dev="dm-1" ino=201895238 scontext=system_u:system_r:httpd_t:s0 tcontext=unconfined_u:object_r:var_t:s0 tclass=file type=AVC msg=audit(1446114216.793:2045): avc: denied { read } for pid=6153 comm="nginx" name="bootstrap.min.js" dev="dm-1" ino=201871139 scontext=system_u:system_r:httpd_t:s0 tcontext=unconfined_u:object_r:var_t:s0 tclass=file type=AVC msg=audit(1446114216.795:2046): avc: denied { read } for pid=6153 comm="nginx" name="sortable.min.js" dev="dm-1" ino=201895241 scontext=system_u:system_r:httpd_t:s0 tcontext=unconfined_u:object_r:var_t:s0 tclass=file ```
Author
Owner

@savichev commented on GitHub (Oct 29, 2015):

sudo semanage fcontext -a -t httpd_sys_content_t "/srv/webvirtcloud(/.*)"

sudo cat /var/log/audit/audit.log | grep nginx | grep denied | audit2allow -M mynginx
sudo semodule -i mynginx.pp
<!-- gh-comment-id:152140506 --> @savichev commented on GitHub (Oct 29, 2015): ``` sudo semanage fcontext -a -t httpd_sys_content_t "/srv/webvirtcloud(/.*)" sudo cat /var/log/audit/audit.log | grep nginx | grep denied | audit2allow -M mynginx sudo semodule -i mynginx.pp ```
Author
Owner

@romu70 commented on GitHub (Oct 29, 2015):

No change.

<!-- gh-comment-id:152143086 --> @romu70 commented on GitHub (Oct 29, 2015): No change.
Author
Owner

@savichev commented on GitHub (Oct 29, 2015):

3 command execute?

<!-- gh-comment-id:152143311 --> @savichev commented on GitHub (Oct 29, 2015): 3 command execute?
Author
Owner

@romu70 commented on GitHub (Oct 29, 2015):

Don't understand your question.

<!-- gh-comment-id:152143489 --> @romu70 commented on GitHub (Oct 29, 2015): Don't understand your question.
Author
Owner

@savichev commented on GitHub (Oct 29, 2015):

sudo cat /var/log/audit/audit.log | grep nginx | grep denied | audit2allow -M mynginx
sudo semodule -i mynginx.pp
<!-- gh-comment-id:152144074 --> @savichev commented on GitHub (Oct 29, 2015): ``` sudo cat /var/log/audit/audit.log | grep nginx | grep denied | audit2allow -M mynginx sudo semodule -i mynginx.pp ```
Author
Owner

@romu70 commented on GitHub (Oct 29, 2015):

No change. Hey, let's give up, I'll switch the server to Xubuntu. Unless you really like this challenge of course ;-)

<!-- gh-comment-id:152144648 --> @romu70 commented on GitHub (Oct 29, 2015): No change. Hey, let's give up, I'll switch the server to Xubuntu. Unless you really like this challenge of course ;-)
Author
Owner

@savichev commented on GitHub (Oct 29, 2015):

sudo nano /etc/selinux/config

search

SELINUX=enabled

change

SELINUX=disabled

reboot

<!-- gh-comment-id:152145021 --> @savichev commented on GitHub (Oct 29, 2015): ``` sudo nano /etc/selinux/config ``` search ``` SELINUX=enabled ``` change ``` SELINUX=disabled ``` reboot
Author
Owner

@romu70 commented on GitHub (Oct 29, 2015):

This way, it wooooooorrrrrrkkkkkkkkksssssssssss !!! Thanks a lot. I'll play with it to see what I can do and how it compares to webvirtmgr we're currently running. Based on this long discussion, and difficulties, do you recommend to run it with *ubuntu (so no SELinux)? This setup was for a testing server, I've to choose a distribution for our production server.

<!-- gh-comment-id:152146801 --> @romu70 commented on GitHub (Oct 29, 2015): This way, it wooooooorrrrrrkkkkkkkkksssssssssss !!! Thanks a lot. I'll play with it to see what I can do and how it compares to webvirtmgr we're currently running. Based on this long discussion, and difficulties, do you recommend to run it with *ubuntu (so no SELinux)? This setup was for a testing server, I've to choose a distribution for our production server.
Author
Owner

@savichev commented on GitHub (Oct 29, 2015):

I have very little experience with CentOS/Fedora/RH...
Then I advise you, you can not use in a production environment (Disable SELinux).
I recomended use Debian (Only by the fact that I have enough experience). =)

<!-- gh-comment-id:152148058 --> @savichev commented on GitHub (Oct 29, 2015): I have very little experience with CentOS/Fedora/RH... Then I advise you, you can not use in a production environment (Disable SELinux). I recomended use Debian (Only by the fact that I have enough experience). =)
Author
Owner

@romu70 commented on GitHub (Oct 29, 2015):

ah ah ah, any way, thanks a lot for your help.

<!-- gh-comment-id:152148469 --> @romu70 commented on GitHub (Oct 29, 2015): ah ah ah, any way, thanks a lot for your help.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/webvirtcloud#39
No description provided.