[Support] binhex - SABnzbd


Recommended Posts

Trying to run the mylar post-process script, sab says:

 

/usr/bin/env: ‘python’: No such file or directory

 

The script uses #!/usr/bin/env python

 

if SSH, I get:

 

/usr/bin# /usr/bin/env python
/usr/bin/env: ‘python’: No such file or directory

 

When looking at directory structure, it appears "env" is a shortcut?

 

/usr/bin/env@

 

 

Link to comment

I'm trying to connect your version of sabnzbdvpn with sabnzbd and this is the following message i'm getting in my log: 

 

Missing OpenVPN configuration file in /config/openvpn/ (no files with an ovpn extension exist), please create and then restart this container, exiting..

 

Any idea of why this is? Should I only have the Sabnzbdvpn docker installed? Or can I have sabnzbd and sabnzbdvpn installed as well? The vpn docker won't show a web gui when I try to connect to it (it's set to a different port than sabnzbd).

Edited by DockCity
Link to comment
6 hours ago, DockCity said:

I'm trying to connect your version of sabnzbdvpn with sabnzbd and this is the following message i'm getting in my log: 

 

Missing OpenVPN configuration file in /config/openvpn/ (no files with an ovpn extension exist), please create and then restart this container, exiting..

 

Any idea of why this is? Should I only have the Sabnzbdvpn docker installed? Or can I have sabnzbd and sabnzbdvpn installed as well? The vpn docker won't show a web gui when I try to connect to it (it's set to a different port than sabnzbd).

 

so im unclear as to what you're trying to achieve, not sure what you mean by "I'm trying to connect your version of sabnzbdvpn with sabnzbd", are you trying to transition over FROM sabnzbd TO sabnzbdvpn right, as in all your settings etc?.

Link to comment
On 16/08/2017 at 2:25 AM, russdyer77 said:

Trying to run the mylar post-process script, sab says:

 

/usr/bin/env: ‘python’: No such file or directory

 

The script uses 


#!/usr/bin/env python

 

if SSH, I get:

 

/usr/bin# /usr/bin/env python
/usr/bin/env: ‘python’: No such file or directory

 

When looking at directory structure, it appears "env" is a shortcut?

 

/usr/bin/env@

 

 

 

/usr/bin/env is a command you can execute to see what env vars have been defined, in this case a env var called "python" doesn't exist, you need to specify the version instead, so change the line:-

 

#!/usr/bin/env python

to

#!/usr/bin/env python2

this is assuming its a python2 script, if its written for python3 then change the above line to python3.

Link to comment
7 hours ago, binhex said:

 

/usr/bin/env is a command you can execute to see what env vars have been defined, in this case a env var called "python" doesn't exist, you need to specify the version instead, so change the line:-

 


#!/usr/bin/env python

to


#!/usr/bin/env python2

this is assuming its a python2 script, if its written for python3 then change the above line to python3.

 

Ok, I noticed that typing "which python" says python is located in /usr/bin, so I'm assuming the script is correct when it starts with the line #!/usr/bin/env python.  

 

But when I try to run the script file in SAB, the error is 

 

Quote

Cannot run script /config/scripts/ComicRN.py

 

Yet the Sab log file doesn't show any errors:

 

Quote

Running external script /config/scripts/ComicRN.py(/data/complete/comics/nameofcomic, nameofcomic.nzb, Name of Comic, , comics-mylar, alt.binaries.comics.dcp, 0, )
2017-08-17 13:58:22,815::INFO::[postproc:581] Cleaning up Name of Comic (keep_basic=False)
2017-08-17 13:58:22,826::INFO::[postproc:89] Saving postproc queue
2017-08-17 13:58:22,826::INFO::[__init__:965] Saving data for postproc2.sab in /config/admin/postproc2.sab
2017-08-17 13:58:22,827::INFO::[downloader:299] Post-processing finished, resuming download

 

Link to comment
18 hours ago, binhex said:

 

so im unclear as to what you're trying to achieve, not sure what you mean by "I'm trying to connect your version of sabnzbdvpn with sabnzbd", are you trying to transition over FROM sabnzbd TO sabnzbdvpn right, as in all your settings etc?.

 

Sorry my post was very unclear.

 

I have your Sabnzbd docker installed, and it works great.

 

What I am trying to achieve is I have also installed your Sabnzbdvpn docker, and I am trying to get the vpn docker to work as well. The ports for the sabnzbd and the sabnzbdvpn are different. I can access the sabnzbd docker with the webui, while I cannot access the sabnzbdvpn  docker with the webui.

 

This is the log from the vpn docker: Missing OpenVPN configuration file in /config/openvpn/ (no files with an ovpn extension exist), please create and then restart this container, exiting

 

Is the issue that I don't have an openvpn config file in the openvpn folder, or is the issue that you can only use 1 docker (sabnzbd OR sabnzbdvpn docker?)

 

If it's that I don't have a config file in the openvpn folder, how would I add one?

 

Appreciate your help!

 

 

Link to comment
3 hours ago, DockCity said:

 

Sorry my post was very unclear.

 

I have your Sabnzbd docker installed, and it works great.

 

What I am trying to achieve is I have also installed your Sabnzbdvpn docker, and I am trying to get the vpn docker to work as well. The ports for the sabnzbd and the sabnzbdvpn are different. I can access the sabnzbd docker with the webui, while I cannot access the sabnzbdvpn  docker with the webui.

 

This is the log from the vpn docker: Missing OpenVPN configuration file in /config/openvpn/ (no files with an ovpn extension exist), please create and then restart this container, exiting

 

Is the issue that I don't have an openvpn config file in the openvpn folder, or is the issue that you can only use 1 docker (sabnzbd OR sabnzbdvpn docker?)

 

If it's that I don't have a config file in the openvpn folder, how would I add one?

 

Appreciate your help!

 

 

 

ahh ok yes that is much clearer :-), so yeah the sabnzbdvpn differs in that it includes a vpn client to route all traffic down the tunnel, so if you want to make use of this then you will firstly need to signup to a vpn provider (pia or airvpn recommended) and once you have done this you will then need to download the openvpn config file and certs from the vpn providers website and put them in the /config/openvpn (thats what its moaning about in the log). once you've done this you then configure the docker with your vpn credentials, im going to write a newbie guide shortly so i may link to it once ive done it.

Link to comment
17 hours ago, binhex said:

 

ahh ok yes that is much clearer :-), so yeah the sabnzbdvpn differs in that it includes a vpn client to route all traffic down the tunnel, so if you want to make use of this then you will firstly need to signup to a vpn provider (pia or airvpn recommended) and once you have done this you will then need to download the openvpn config file and certs from the vpn providers website and put them in the /config/openvpn (thats what its moaning about in the log). once you've done this you then configure the docker with your vpn credentials, im going to write a newbie guide shortly so i may link to it once ive done it.

 

So does that mean that you use either the sabnzbd docker OR the sabnzbdvpn (which also has a vpn)? Or are you supposed to use the two dockers in conjunction? Also, and this is a really dumb question, how do I add files to the config files on the server? On my mac I can see other shares, but not the config folder.

 

Update: Tried adding the openvpn folder so that it's config/ and then added a folder for openvpn as well as the openvpn files in the folder. I'm still getting the critical error and not able to connect to the webui. Is it because I have both the sabnzbd and the sabnzbdvpn dockers installed?

 

Thanks!

Edited by DockCity
Change config above
Link to comment
On 18/08/2017 at 9:20 PM, DockCity said:

So does that mean that you use either the sabnzbd docker OR the sabnzbdvpn

 

no, you can use both as long as they run on different ports on the host side, and have separate /config host mappings.

 

On 18/08/2017 at 9:20 PM, DockCity said:

Or are you supposed to use the two dockers in conjunction?

 

nope, they are completely seperate

 

On 18/08/2017 at 9:20 PM, DockCity said:

how do I add files to the config files on the server?

 

well you shouldnt really need to do this, as soon as the application starts it will create the required configuration files, but if you want to manually edit them (not recommended) then you would attach to the share name, probably \\<ip address of unraid>\appadata

 

On 18/08/2017 at 9:20 PM, DockCity said:

Update: Tried adding the openvpn folder so that it's config/ and then added a folder for openvpn as well as the openvpn files in the folder. I'm still getting the critical error

 

you need to go through my newly written newbie guide, see here:-

 

 

Link to comment
9 hours ago, binhex said:

 

no, you can use both as long as they run on different ports on the host side, and have separate /config host mappings.

 

 

nope, they are completely seperate

 

 

well you shouldnt really need to do this, as soon as the application starts it will create the required configuration files, but if you want to manually edit them (not recommended) then you would attach to the share name, probably \\<ip address of unraid>\appadata

 

 

you need to go through my newly written newbie guide, see here:-

 

 

 

So looking at your guide an Openvpn folder was created when the docker was setup, but how do I unzip the folder downloaded from PIA into this folder?

Link to comment
14 hours ago, DockCity said:

So looking at your guide an Openvpn folder was created when the docker was setup, but how do I unzip the folder downloaded from PIA into this folder?

 

you download the zip using your mac/linux/windows pc and then unzip it to \\<ip of your unraid server>\<share name>\<path to the openvpn folder> if the zip contains a path then extract it then move all files back to the root of the openvpn folder and delete sub folder it created.

Link to comment

I added contents to the openvpn folder from my vpn but now I'm getting the following from my log:

 

dos2unix: Binary symbol 0x00 found at line 1
dos2unix: Skipping binary file /config/openvpn/._AU Melbourne.ovpn
2017-08-22 12:43:21.267477 [crit] VPN configuration file /config/openvpn/._AU Melbourne.ovpn does not contain 'remote' line, showing contents of file before exit...
Mac OS X ATTR;CCcom.apple.quarantine81;59967827;Google\x20Chrome;3BC38A7F-E97D-42F0-BA0E-1282FC5FEE82This resource fork intentionally left blank

 

Any ideas of why that might be? 

 

Edit: I fixed the above but now I'm getting the following error message: 


2017-08-22 12:54:02,075 DEBG 'start-script' stdout output:
[info] Starting OpenVPN...

2017-08-22 12:54:02,080 DEBG 'start-script' stdout output:
Options error: Unrecognized option or missing or extra parameter(s) in [CMD-LINE]:1: auth-user-pass (2.4.1)
Use --help for more information.

2017-08-22 12:54:02,081 DEBG 'start-script' stdout output:
[info] OpenVPN started

 

Edit 2: Fixed the above issue and got it all working! Thanks for the help. Only other questions I have is I'm now getting the following warning:

 

Tue Aug 22 13:02:24 2017 WARNING: file 'credentials.conf' is group or others accessible

 

Additionally, now that the webui works and I'm using privoxy for other dockers, how will I know the VPN is working? 

Edited by DockCity
Link to comment
1 hour ago, DockCity said:

Additionally, now that the webui works and I'm using privoxy for other dockers, how will I know the VPN is working? 

Set a browser on your main PC to use the privoxy, and go to one of the external IP checking sites. You should get an IP that corresponds to the VPN provider instead of your local ISP.

Link to comment
I added contents to the openvpn folder from my vpn but now I'm getting the following from my log:

 

dos2unix: Binary symbol 0x00 found at line 1
dos2unix: Skipping binary file /config/openvpn/._AU Melbourne.ovpn
2017-08-22 12:43:21.267477 [crit] VPN configuration file /config/openvpn/._AU Melbourne.ovpn does not contain 'remote' line, showing contents of file before exit...
Mac OS X ATTR;CCcom.apple.quarantine81;59967827;Google\x20Chrome;3BC38A7F-E97D-42F0-BA0E-1282FC5FEE82This resource fork intentionally left blank

 

Any ideas of why that might be? 

 

Edit: I fixed the above but now I'm getting the following error message: 


2017-08-22 12:54:02,075 DEBG 'start-script' stdout output:
[info] Starting OpenVPN...

2017-08-22 12:54:02,080 DEBG 'start-script' stdout output:
Options error: Unrecognized option or missing or extra parameter(s) in [CMD-LINE]:1: auth-user-pass (2.4.1)
Use --help for more information.

2017-08-22 12:54:02,081 DEBG 'start-script' stdout output:
[info] OpenVPN started

 

Edit 2: Fixed the above issue and got it all working! Thanks for the help. Only other questions I have is I'm now getting the following warning:

 

Tue Aug 22 13:02:24 2017 WARNING: file 'credentials.conf' is group or others accessible

 

Additionally, now that the webui works and I'm using privoxy for other dockers, how will I know the VPN is working? 

You have the same problem as this post in delugevpn, av is quarantining ovpn file:-

 

https://forums.lime-technology.com/index.php?/topic/44109-[support]-binhex---DelugeVPN#entry584603

 

Sent from my SM-G935F using Tapatalk

 

 

 

Link to comment
4 hours ago, binhex said:

You have the same problem as this post in delugevpn, av is quarantining ovpn file:-

 

https://forums.lime-technology.com/index.php?/topic/44109-[support]-binhex---DelugeVPN#entry584603

 

Sent from my SM-G935F using Tapatalk

 

 

 

 

I've got privoxy working now, but when I use the privoxy settings for radarr and sonarr (local:8118), the dockers are no longer able to connect to sabnzbd. Any idea why? 

 

Sorry I know I've got a million questions.

Link to comment
18 hours ago, binhex said:

 

This is wrong, it should be <ip of your unraid server>:8118

 

e.g. 192.168.1.10:8118

 

Sorry I meant that it was <ip of unraid server>:8118 but once I activate proxy in sonarr or radarr, they won't connect. I'm able to connect to the sabnzbdvpn and it says it's working (here's my log):


2017-08-22 18:21:17,323 DEBG 'start-script' stdout output:
[info] Starting OpenVPN...

2017-08-22 18:21:17,329 DEBG 'start-script' stdout output:
Tue Aug 22 18:21:17 2017 WARNING: file 'credentials.conf' is group or others accessible
Tue Aug 22 18:21:17 2017 OpenVPN 2.4.1 x86_64-unknown-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 22 2017
Tue Aug 22 18:21:17 2017 library versions: OpenSSL 1.1.0e 16 Feb 2017, LZO 2.10

2017-08-22 18:21:17,330 DEBG 'start-script' stdout output:
[info] OpenVPN started

2017-08-22 18:21:17,330 DEBG 'start-script' stdout output:
Tue Aug 22 18:21:17 2017 NOTE: the current --script-security setting may allow this configuration to call user-defined scripts

2017-08-22 18:21:17,331 DEBG 'start-script' stdout output:
Tue Aug 22 18:21:17 2017 TCP/UDP: Preserving recently used remote address: [AF_INET]108.61.122.88:501
Tue Aug 22 18:21:17 2017 Attempting to establish TCP connection with [AF_INET]108.61.122.88:501 [nonblock]

2017-08-22 18:21:18,331 DEBG 'start-script' stdout output:
Tue Aug 22 18:21:18 2017 TCP connection established with [AF_INET]108.61.122.88:501
Tue Aug 22 18:21:18 2017 TCP_CLIENT link local: (not bound)
Tue Aug 22 18:21:18 2017 TCP_CLIENT link remote: [AF_INET]108.61.122.88:501

2017-08-22 18:21:19,729 DEBG 'start-script' stdout output:
Tue Aug 22 18:21:19 2017 [1d684c4234c2564794cf1fe0503a1ee7] Peer Connection Initiated with [AF_INET]108.61.122.88:501

2017-08-22 18:21:21,251 DEBG 'start-script' stdout output:
Tue Aug 22 18:21:21 2017 TUN/TAP device tun0 opened
Tue Aug 22 18:21:21 2017 do_ifconfig, tt->did_ifconfig_ipv6_setup=0
Tue Aug 22 18:21:21 2017 /usr/bin/ip link set dev tun0 up mtu 1500

2017-08-22 18:21:21,253 DEBG 'start-script' stdout output:
Tue Aug 22 18:21:21 2017 /usr/bin/ip addr add dev tun0 local 10.30.1.34 peer 10.30.1.33

2017-08-22 18:21:21,254 DEBG 'start-script' stdout output:
Tue Aug 22 18:21:21 2017 /root/openvpnup.sh tun0 1500 1572 10.30.1.34 10.30.1.33 init

2017-08-22 18:21:21,265 DEBG 'start-script' stdout output:
Tue Aug 22 18:21:21 2017 Initialization Sequence Completed

2017-08-22 18:21:21,291 DEBG 'privoxy-script' stdout output:
[info] Configuring Privoxy...

2017-08-22 18:21:21,299 DEBG 'sabnzbd-script' stdout output:
[info] SABnzbd not running
[info] Attempting to start SABnzbd...

2017-08-22 18:21:21,517 DEBG 'privoxy-script' stdout output:
[info] All checks complete, starting Privoxy...

2017-08-22 18:21:21,518 DEBG 'privoxy-script' stderr output:
2017-08-22 18:21:21.518 2b0282d85ec0 Info: Privoxy version 3.0.26
2017-08-22 18:21:21.518 2b0282d85ec0 Info: Program name: /usr/bin/privoxy

2017-08-22 18:21:21,850 DEBG 'sabnzbd-script' stdout output:
[info] SABnzbd started

2017-08-22 18:21:21,869 DEBG 'start-script' stdout output:
[info] Successfully retrieved external IP address 196.54.55.30

Link to comment
On 8/23/2017 at 7:58 PM, DockCity said:

 

Sorry I meant that it was <ip of unraid server>:8118 but once I activate proxy in sonarr or radarr, they won't connect. I'm able to connect to the sabnzbdvpn and it says it's working (here's my log):


2017-08-22 18:21:17,323 DEBG 'start-script' stdout output:
[info] Starting OpenVPN...

2017-08-22 18:21:17,329 DEBG 'start-script' stdout output:
Tue Aug 22 18:21:17 2017 WARNING: file 'credentials.conf' is group or others accessible
Tue Aug 22 18:21:17 2017 OpenVPN 2.4.1 x86_64-unknown-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 22 2017
Tue Aug 22 18:21:17 2017 library versions: OpenSSL 1.1.0e 16 Feb 2017, LZO 2.10

2017-08-22 18:21:17,330 DEBG 'start-script' stdout output:
[info] OpenVPN started

2017-08-22 18:21:17,330 DEBG 'start-script' stdout output:
Tue Aug 22 18:21:17 2017 NOTE: the current --script-security setting may allow this configuration to call user-defined scripts

2017-08-22 18:21:17,331 DEBG 'start-script' stdout output:
Tue Aug 22 18:21:17 2017 TCP/UDP: Preserving recently used remote address: [AF_INET]108.61.122.88:501
Tue Aug 22 18:21:17 2017 Attempting to establish TCP connection with [AF_INET]108.61.122.88:501 [nonblock]

2017-08-22 18:21:18,331 DEBG 'start-script' stdout output:
Tue Aug 22 18:21:18 2017 TCP connection established with [AF_INET]108.61.122.88:501
Tue Aug 22 18:21:18 2017 TCP_CLIENT link local: (not bound)
Tue Aug 22 18:21:18 2017 TCP_CLIENT link remote: [AF_INET]108.61.122.88:501

2017-08-22 18:21:19,729 DEBG 'start-script' stdout output:
Tue Aug 22 18:21:19 2017 [1d684c4234c2564794cf1fe0503a1ee7] Peer Connection Initiated with [AF_INET]108.61.122.88:501

2017-08-22 18:21:21,251 DEBG 'start-script' stdout output:
Tue Aug 22 18:21:21 2017 TUN/TAP device tun0 opened
Tue Aug 22 18:21:21 2017 do_ifconfig, tt->did_ifconfig_ipv6_setup=0
Tue Aug 22 18:21:21 2017 /usr/bin/ip link set dev tun0 up mtu 1500

2017-08-22 18:21:21,253 DEBG 'start-script' stdout output:
Tue Aug 22 18:21:21 2017 /usr/bin/ip addr add dev tun0 local 10.30.1.34 peer 10.30.1.33

2017-08-22 18:21:21,254 DEBG 'start-script' stdout output:
Tue Aug 22 18:21:21 2017 /root/openvpnup.sh tun0 1500 1572 10.30.1.34 10.30.1.33 init

2017-08-22 18:21:21,265 DEBG 'start-script' stdout output:
Tue Aug 22 18:21:21 2017 Initialization Sequence Completed

2017-08-22 18:21:21,291 DEBG 'privoxy-script' stdout output:
[info] Configuring Privoxy...

2017-08-22 18:21:21,299 DEBG 'sabnzbd-script' stdout output:
[info] SABnzbd not running
[info] Attempting to start SABnzbd...

2017-08-22 18:21:21,517 DEBG 'privoxy-script' stdout output:
[info] All checks complete, starting Privoxy...

2017-08-22 18:21:21,518 DEBG 'privoxy-script' stderr output:
2017-08-22 18:21:21.518 2b0282d85ec0 Info: Privoxy version 3.0.26
2017-08-22 18:21:21.518 2b0282d85ec0 Info: Program name: /usr/bin/privoxy

2017-08-22 18:21:21,850 DEBG 'sabnzbd-script' stdout output:
[info] SABnzbd started

2017-08-22 18:21:21,869 DEBG 'start-script' stdout output:
[info] Successfully retrieved external IP address 196.54.55.30

 

Just wanted to bump the above! Sonarr is now able to connect to the indexer, but it won't connect to sabnzbd.

Link to comment
  • 1 month later...

Silly question, but how do I update the docker container?

 

I am still on...er...sabnzbd 1.0.2 running on Unraid 6.1.9.

 

Unraid has never shown that the container is anything other than up to date:

 

image.png.d44e757a2ed7897aac5ae15cf667d7a2.png

 

Even if I force update, I don't really get a result:

 

image.png.33680fc81ffa2045df8b12fffc2f891d.png

 

Is my install too old, or am I doing updates wrong?  Have the repositories changed?  Best to just delete and pull a fresh build?

 

Thanks in advance!

 

 

 

 

Link to comment
2 hours ago, sharaleo said:

Silly question, but how do I update the docker container?

 

I am still on...er...sabnzbd 1.0.2 running on Unraid 6.1.9.

 

Unraid has never shown that the container is anything other than up to date:

 

image.png.d44e757a2ed7897aac5ae15cf667d7a2.png

 

Even if I force update, I don't really get a result:

 

image.png.33680fc81ffa2045df8b12fffc2f891d.png

 

Is my install too old, or am I doing updates wrong?  Have the repositories changed?  Best to just delete and pull a fresh build?

 

Thanks in advance!

 

 

 

 

 

from memory i think there was an issue with 6.1.9 and docker updates not being found, basically there was a change on docker hub's end and it broke unraid docker update support, so your options are either learn docker command line and pull it down using docker engine, or update to unraid 6.3.x, i would go for the second option if i were you, but be aware there are a couple of hoops to jump through when going from 6.1.9, cant quite remember all the steps but i know you will need to delete and re-create your docker img file, and thus will loose all containers temporarily, if you get stuck i would advise a posting in the general support section of the forum.

Link to comment

Thanks for the reply.

 

Ended up being something simpler - stupid Unraid date has slipped, so could not pull any update info at all from docker or git.  Realised when I tried for the Unraid update and got cert errors...

 

Updated Unraid, then the containers, now all good.

 

Cheers!

Link to comment

I've been running this fine for awhile until I updated the sabnzbd docker today. Wasn't sure what to post to help troubleshoot, but this was in the latter part of the log file. Please let me know what I can do to help get this back up and running. Thanks!


2017-10-22 16:44:51,317 DEBG 'sabnzbd' stderr output:
2017-10-22 16:44:51,316::INFO::[SABnzbd:1380] Starting web-interface on 0.0.0.0:8090
2017-10-22 16:44:51,318 DEBG 'sabnzbd' stderr output:
2017-10-22 16:44:51,317::INFO::[_cplogging:219] [22/Oct/2017:16:44:51] ENGINE Bus STARTING
2017-10-22 16:44:51,619 DEBG 'sabnzbd' stderr output:
2017-10-22 16:44:51,616::ERROR::[_cplogging:219] [22/Oct/2017:16:44:51] ENGINE Error in 'start' listener <bound method Server.start of <cherrypy._cpserver.Server object at 0x2b0e75b016d0>>
Traceback (most recent call last):
File "/opt/sabnzbd/cherrypy/process/wspbus.py", line 207, in publish
output.append(listener(*args, **kwargs))
File "/opt/sabnzbd/cherrypy/_cpserver.py", line 167, in start
self.httpserver, self.bind_addr = self.httpserver_from_self()
File "/opt/sabnzbd/cherrypy/_cpserver.py", line 158, in httpserver_from_self
httpserver = _cpwsgi_server.CPWSGIServer(self)
File "/opt/sabnzbd/cherrypy/_cpwsgi_server.py", line 64, in __init__
self.server_adapter.ssl_certificate_chain)
File "/opt/sabnzbd/cherrypy/wsgiserver/ssl_builtin.py", line 56, in __init__
self.context.load_cert_chain(certificate, private_key)
SSLError: [SSL: CA_MD_TOO_WEAK] ca md too weak (_ssl.c:2699)
2017-10-22 16:44:51,823 DEBG 'sabnzbd' stderr output:
2017-10-22 16:44:51,822::INFO::[_cplogging:219] [22/Oct/2017:16:44:51] ENGINE Serving on http://0.0.0.0:8080
2017-10-22 16:44:51,823::ERROR::[_cplogging:219] [22/Oct/2017:16:44:51] ENGINE Shutting down due to error in start listener:
Traceback (most recent call last):
File "/opt/sabnzbd/cherrypy/process/wspbus.py", line 245, in start
self.publish('start')
File "/opt/sabnzbd/cherrypy/process/wspbus.py", line 225, in publish
raise exc
ChannelFailures: SSLError(336245134, u'[SSL: CA_MD_TOO_WEAK] ca md too weak (_ssl.c:2699)')
2017-10-22 16:44:51,825 DEBG 'sabnzbd' stderr output:
2017-10-22 16:44:51,823::INFO::[_cplogging:219] [22/Oct/2017:16:44:51] ENGINE Bus STOPPING

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.