Page 2 of 2

Re: Accessing sabnzbd remotely using https

Posted: March 2nd, 2014, 1:57 pm
by sander
Well, that looks good.

Last shot: do you run a firewall?

Code: Select all

sudo iptables -L -n
Post back the results.

Re: Accessing sabnzbd remotely using https [Linux]

Posted: March 2nd, 2014, 2:00 pm
by peaveyman
sudo iptables -L -n
[sudo] password for ****:
Chain INPUT (policy ACCEPT)
target prot opt source destination

Chain FORWARD (policy ACCEPT)
target prot opt source destination

Chain OUTPUT (policy ACCEPT)
target prot opt source destination

Re: Accessing sabnzbd remotely using https [Linux]

Posted: March 2nd, 2014, 2:05 pm
by sander
So, no firewall settings. Good. But that means I'm out of ideas. Long shot:

Does you sabnzbd.log say:

Code: Select all

2014-03-02 19:53:38,106::INFO::[_cplogging:55] [02/Mar/2014:19:53:38] ENGINE Serving on 0.0.0.0:9090
2014-03-02 19:53:38,209::INFO::[_cplogging:55] [02/Mar/2014:19:53:38] ENGINE Serving on 0.0.0.0:8080
If you stop sabnzbd, are all the entries 8080 and 9090 gone from the netstat command?

Re: Accessing sabnzbd remotely using https [Linux]

Posted: March 2nd, 2014, 2:14 pm
by peaveyman
2014-03-02 10:29:44,687::INFO::[_cplogging:55] [02/Mar/2014:10:29:44] ENGINE Serving on 0.0.0.0:8080
2014-03-02 10:29:44,790::INFO::[_cplogging:55] [02/Mar/2014:10:29:44] ENGINE Serving on ::1:8080
2014-03-02 10:29:44,892::INFO::[_cplogging:55] [02/Mar/2014:10:29:44] ENGINE Serving on ::1:9090
2014-03-02 10:29:44,995::INFO::[_cplogging:55] [02/Mar/2014:10:29:44] ENGINE Serving on 0.0.0.0:9090

Yes, when I stop SAB the entries are gone from the netstat command.

Re: Accessing sabnzbd remotely using https [Linux]

Posted: March 2nd, 2014, 2:20 pm
by sander
Maybe the ::1 are causing the problem?

What is the output of:

Code: Select all

grep port ~/.sabnzbd/sabnzbd.ini
Here's mine:

Code: Select all

$ grep port ~/.sabnzbd/sabnzbd.ini
https_port = 9090
port = 8080
port = 119

Re: Accessing sabnzbd remotely using https [Linux]

Posted: March 2nd, 2014, 2:24 pm
by peaveyman
Strange, when I run the command as user I get /home/****/.sabnzbd/sabnzbd.ini: No such file or directory

Arch installs SAB to /opt if that makes a difference. That is where the sabnzbd.ini file is.