SickRage installer not working

Hi,

When installing SickRage it does not work. I’ve tried via console or GUI, same issue.

Service Unavailable
The server is temporarily unable to service your
request due to maintenance downtime or capacity
problems. Please try again later.

Any suggestions?

when you run

ps aux | grep sickrage

do you see it running? It should look something like:

/usr/bin/python /home/user/.sickrage/SickBeard.py -q --daemon --nolaunch --datadir=/home/user/.sickrage

No sickrage is not running. Starting it manually with: systemctl start sickrage@user does not work either.

2016-11-13 20:53:59 INFO     TORNADO :: Starting SickRage on http://localhost:8081/
2016-11-13 20:53:59 INFO     CHECKVERSION :: Checking for updates using GIT
2016-11-13 20:53:59 INFO     TORNADO :: Could not start webserver on port 8081, already in use!

EDIT2: port 8081 is not in use as I see it:

thebox:/home/user/.sickrage# sudo netstat -peant | grep ":8081 "
thebox:/home/user/.sickrage#

thebox:/home/user/.sickrage# ps aux|grep python
user     1106  0.3  0.2 281916 57028 ?        Ssl  20:53   0:19 /usr/bin/python /usr/bin/deluged -d
user     1119  0.0  0.2 107204 53440 ?        Ss   20:53   0:02 /usr/bin/python /usr/bin/deluge-web
root      1261  0.2  0.0 292220 18584 ?        Sl   20:53   0:13 /usr/bin/python3 /usr/bin/fail2ban-server -s /var/run/fail2ban/fail2ban.sock -p /var/run/fail2ban/fail2ban.pid -x -b
root      2488  0.0  0.0  14232   944 pts/2    S+   22:29   0:00 grep python
thebox:/home/user/.sickrage#

This is extremely weird. Trying to alter Sickrage CONFIG.INI to use another port ie. 8082 results in the same problem! What on earth is going in here :open_mouth:

This is a bit odd for sure. I’m assuming you’ve tried restarting the server to get rid of any orphan processes that might be interfering with the port usage?

Yes, I’ve tried everything. This is a clean install, without any modifications. I’ve never seen this before.

What happens if you just run:
Python /home/user/.sickrage/SickBeard.py

Does it kick out any errors ?

Same issue :frowning:

12:15:31 INFO::TORNADO :: Starting SickRage on http://localhost:8081/
12:15:31 INFO::TORNADO :: Could not start webserver on port 8081, already in use!
12:15:31 INFO::CHECKVERSION :: Checking for updates using GIT

What I’d you go total rogue and try to run it on port 90210?

This port is outside the range of allowable ports; however choosing something random might not be a bad idea to rule out this nag

you’re such a buzz kill @liara lol

By default I disable IPv6 on all my systems. Enabling them again allowed Sickrage to start :fearful:

Why this caused a problem, is unclear to me, but now it works.

net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1
1 Like

Weird…

One thought here – if you try disabling ipv6 again and in the sickrage.conf change the bind to 127.0.0.1 from localhost does it work? How about with 0.0.0.0?