Page 1 of 1

SSL Disabled? Recent Update

Posted: January 12th, 2016, 11:16 am
by MrTPN
Hi Folks,

I was installing some software updates on my Ubuntu 14.04 box today.

After completing this and rebooting i noticed that Sabnzbd was not downloading anymore, after a little digging i noticed that the SSL Options under my server lists were all greyed out. I proceeded to google the issue but have turned up empty handed and hope someone can help me out :)

Code: Select all

mediaservice@MediaManager:~$ cat ~/.sabnzbd/logs/sabnzbd.log | grep -i pyopenssl | tail -10
2016-01-12 15:36:32,269::INFO::[sabnzbdplus:530] pyOpenSSL... NOT found! - Try apt-get install python-pyopenssl (SSL is optional)
2016-01-12 15:53:17,880::INFO::[sabnzbdplus:530] pyOpenSSL... NOT found! - Try apt-get install python-pyopenssl (SSL is optional)

Code: Select all

mediaservice@MediaManager:~$ sudo apt-get install python-pyopenssl
[sudo] password for mediaservice: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package python-pyopenssl

Code: Select all

mediaservice@MediaManager:~$ sudo apt-get install python-openssl
Reading package lists... Done
Building dependency tree       
Reading state information... Done
python-openssl is already the newest version.
0 to upgrade, 0 to newly install, 0 to remove and 0 not to upgrade.

Code: Select all

mediaservice@MediaManager:~$ python
Python 2.7.6 (default, Jun 22 2015, 17:58:13) 
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import openSSL
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named openSSL
I assume, somewhere my openSSL module is upset or python, not sure which! Would really appreciate any support :)

MrTPN

Re: SSL Disabled? Recent Update

Posted: January 12th, 2016, 12:57 pm
by sander
Same sympton (Ubuntu, OpenSSL) here: http://forums.sabnzbd.org/viewtopic.php?f=2&t=20018 ? So ... join that thread?

BTW: You should type

Code: Select all

import OpenSSL
...so with a capital O

Re: SSL Disabled? Recent Update

Posted: January 12th, 2016, 1:01 pm
by MrTPN
Thanks - Will move over to the other thread :)