May 19, 201115 yr Hi Guys, I have been running Sabnzbd with no problem what so ever until recently, i haven't tinkered with it at all it just stopped working one day. I get the following message in the History. 2011-05-19 06:52:37,911 ERROR: Error getting url https://nzbmatrix.com/api-nzb-download.php?id=940400&username=owen1978&apikey=[my api key] (cause= "") Using V0.5.2.
May 19, 201115 yr I just tossed one together: http://lime-technology.com/wiki/index.php?title=Install_Python_based_servers Obviously it needs a lot of work, so get out there and contribute if you can! I haven't even started on the configuration section, but at least the core of the install is recorded . Thanks for doing this Tybio FYI Sab 0.6.1 also works with these instructions.
May 19, 201115 yr Does it not work at all, or just not with nzbmatrix? Perhaps their API is down. Havent tried any other nzb sites... Uploaded with ImageShack.us Updated to ver 0.5.6 Ok... tried NewzBin and its the same thing?
June 9, 201115 yr Can anyone give instructions on how to upgrade an existing install to version 6? Thanks
June 9, 201115 yr Does it not work at all, or just not with nzbmatrix? Perhaps their API is down. Havent tried any other nzb sites... Uploaded with ImageShack.us Updated to ver 0.5.6 Ok... tried NewzBin and its the same thing? I have the same issue when I do a force search on sickbeard and when on nzbmatrix, when I use the send to sab icon. However, if I download the nzb, SAB finds the file immediately and begins the download. So not sure what the problem could be.
June 9, 201115 yr I have the same issue when I do a force search on sickbeard and when on nzbmatrix, when I use the send to sab icon. However, if I download the nzb, SAB finds the file immediately and begins the download. So not sure what the problem could be. The last issue was weeks ago but the nzbmatrix rss was down and is still having issues. Sickbeard uses the rss for the searching. If you look at the full Sickbeard logs (using debugging level I think) you can see the rss calls when searching. http://nzbmatrix.info/ Peter
June 10, 201115 yr Solved my issue... it was simple my isp had changed there DNS server addresses, because my settings are static it didnt update!
June 24, 201115 yr Guys does anyone else have a problem with the sabnzbd cache directory not clearing? I decided to delete the directory and so far it is at 180K files and going over 100GB and going! At least now I know where all my storage space went! I know you can run sab with the -c to clear cache and logs, and que, but I never want to clear my que, just the cache. Is there a way to have it clear the cache automatically?
June 24, 201115 yr Try running the latest SABnzbd builds, like 0.6.5. It's supposed to handle cache entries differently/better.
June 27, 201115 yr how are you guys accessing sab's download folder from a share? Mine gives be access denied when I browse to it.
June 27, 201115 yr I didn't setup the downloads folder as a share. For me, SAB is on the cache disk, which is only a temporary location until I get files moved to the array. I was able to create a mapped network drive to the downloads folder using Windows Explorer. Then I simply treat the contents as any other folder on the network.
June 28, 201115 yr Odd I have sick moving stuff to a share, but I cant access it after it does, i have to chmod it.
June 28, 201115 yr Odd I have sick moving stuff to a share, but I cant access it after it does, i have to chmod it. Sab + Sickbeard are running as root by default, so all the files they create are owned by root.root, not nobody.user which makes them inaccessible via user shares. I have a added the unraid newperms command to the post-processing scripts i use (I don't use the Sickbeard auto-process ones) and it seems to work well. Here is the line to add to your script (you can also make a script that only does the one thing): /usr/local/sbin/newperms "$1"
June 28, 201115 yr ahh make sense, I need to figure out how to run it as nobody then because I use the auto processing. Odd I have sick moving stuff to a share, but I cant access it after it does, i have to chmod it. Sab + Sickbeard are running as root by default, so all the files they create are owned by root.root, not nobody.user which makes them inaccessible via user shares. I have a added the unraid newperms command to the post-processing scripts i use (I don't use the Sickbeard auto-process ones) and it seems to work well. Here is the line to add to your script (you can also make a script that only does the one thing): /usr/local/sbin/newperms "$1"
June 28, 201115 yr Sab + Sickbeard are running as root by default, so all the files they create are owned by root.root, not nobody.user which makes them inaccessible via user shares. I have a added the unraid newperms command to the post-processing scripts i use (I don't use the Sickbeard auto-process ones) and it seems to work well. ahh make sense, I need to figure out how to run it as nobody then because I use the auto processing. If you don't get the apps running as nobody, this should work for you. This requires you install the inotify tools (can be installed from unmenu package manager) #!/bin/sh inotifywait -m -r --event close_write --event moved_to /mnt/user/TV/ --format "newperms \"%w\" " | sh this command says wait until the file is completely written (ie. act on finish, not start of copy/move) in the TV user share and then run the newperms commands on everything in the TV folder; this might be a bit disk intensive (and will spinup drives). You can set the path to whichever user share you are saving the downloads in. Just save this to a file and start it from the go script -- i use echo "/boot/config/watch_tv.sh" | at now +1 minute so it launches in the background.
June 28, 201115 yr I am working on updating the sabnzbd, sickbeard, and couchpotato packages in unMenu so that they run as root under 4.7 and nobody under 5.0bX. I have most of it completed but have not had a chance to test them out. I was away at a wedding half the week last week so did not get much of anything accomplished. Hopefully something will be out over the 4th of July weekend.
July 2, 201115 yr Great news. I'm about to replace the 250gb IDE cache disk with a 1tb SATA unit. This will be a good time to test this out. Thanks for your hard work. Edited: Derp.
July 2, 201115 yr Great news. I'm about to replace the 250gb IDE cache disk with a 1gb SATA unit. This will be a good time to test this out. That's going to fill up pretty quickly.
July 4, 201115 yr Is the cache drive necessary for setting up these apps? I see from this guide that its not strictly required, but is it generally thought that you should use a cache drive for this series of applications or are you okay to have everything write directly to your parity array?
July 4, 201115 yr Is the cache drive necessary for setting up these apps? I see from this guide that its not strictly required, but is it generally thought that you should use a cache drive for this series of applications or are you okay to have everything write directly to your parity array? The ONLY benefit of using a cache drive is that the parity drive will not be kept spinning as writes from those processes are made to the disk it is writing to. The processes will still need to be terminated before the array can be stopped cleanly... It will wait forever otherwise)
July 4, 201115 yr Is the cache drive necessary for setting up these apps? I see from this guide that its not strictly required, but is it generally thought that you should use a cache drive for this series of applications or are you okay to have everything write directly to your parity array? The ONLY benefit of using a cache drive is that the parity drive will not be kept spinning as writes from those processes are made to the disk it is writing to. The processes will still need to be terminated before the array can be stopped cleanly... It will wait forever otherwise) I see - or believe I do. I am still very much in beginner-learning mode. So, according to the linked wiki I could install on to any drive in my array ( substituting /mnt/cache for /mnt/sdX ) and it would still function the same?
July 4, 201115 yr Yes, you can install to any drive as long as you are OK with both that drive and the cache drive running at the same time. I'm sure you actually meant you wanted to use /mnt/diskX instead of /mnt/cache, right? Peter
Archived
This topic is now archived and is closed to further replies.