Problems with Sabnzbd and Sickbeard


Recommended Posts

I have just replaced my old unraid server (made by old parts laying around) with a new HP Microserver N40L.

 

And up untill yesterday everything was working just fine. But after a power outage I restarted the server, and now SABnzbd and sickbeard wont start. When I take my array live (that's when sabnzbd and sickbeard are supposed to start) the main webui hangs. After disabling sabnzbd and sickbeard it starts up just fine.

 

When I try to start sabnzbd manually after the array is online i get this line in the bottom of the screen:

 

Starting SABnzbd: sudo -u root python /usr/local/sabnzbd/SABnzbd.py --daemon --server 0.0.0.0:7000 --config-file /mnt/disk1/.apps/sabnzbd --pid /var/run/sabnzbd/ 2>&1 >/dev/null

 

I am using the free version of unraid (version 5.0-rc2), with one 2tb parity drive, and two 2tb data drives.

 

The plugins are from here:

https://github.com/W-W/unRAID

 

Can someone please tell me what's going on with my sabnzbd and sickbeard installation? :-\

Link to comment

I just had this problem when installing for the first time. It's because when the script installs or updates it does this:

 

version=($(wget -q -O - http://sabnzbdplus.sourceforge.net/version/latest | awk NR==1))

 

which hasn't been updated to the latest version, 0.7.0. This means it tried to get 0.6.15 from the incorrect place and doesn't install anything.

I changed the line above to this:

#version=($(wget -q -O - http://sabnzbdplus.sourceforge.net/version/latest | awk NR==1))
version="0.7.0"

and the install went fine :)

 

I'll have to remember to change it back, but it should get you up and running.

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.