stuck at "trying to fetch"

Get help with all aspects of SABnzbd
Forum rules
Help us help you:
  • Are you using the latest stable version of SABnzbd? Downloads page.
  • Tell us what system you run SABnzbd on.
  • Adhere to the forum rules.
  • Do you experience problems during downloading?
    Check your connection in Status and Interface settings window.
    Use Test Server in Config > Servers.
    We will probably ask you to do a test using only basic settings.
  • Do you experience problems during repair or unpacking?
    Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
Dewdman42
Newbie
Newbie
Posts: 16
Joined: September 2nd, 2015, 10:16 pm

stuck at "trying to fetch"

Post by Dewdman42 »

I have been using sabnzbd successfully for about 6 months. This week suddenly everything queued up is giving me something like:

Code: Select all

trying to fetch NZB from bla bla.....
Looking at the log I see:

Code: Select all

2015-09-02 21:19:45,149::DEBUG::[urlgrabber:372] No response from indexer, retry after 60 sec
Using two different indexers as of now (usenet-crawler and nzb.is), same problem with both, and I tried a few others in free mode and get the same problem with all of them too.

It was all working perfectly fine until this week. I've tried already numerous times to repair the queue an restart sabnzbd, same problem always comes back.

Any help would be appreciated.
User avatar
shypike
Administrator
Administrator
Posts: 19774
Joined: January 18th, 2008, 12:49 pm

Re: stuck at "trying to fetch"

Post by shypike »

Which version of SABnzbd are you using?
Dewdman42
Newbie
Newbie
Posts: 16
Joined: September 2nd, 2015, 10:16 pm

Re: stuck at "trying to fetch"

Post by Dewdman42 »

0.7.20
mogodon
Newbie
Newbie
Posts: 13
Joined: September 3rd, 2015, 10:06 am

Re: stuck at "trying to fetch"

Post by mogodon »

Same problem here on v0.7.20. Was working fine til Sunday/Monday and since then every nzb is stuck at fetching.

If I click on the link that Sab is fetching from the nzb downloads straight away.
Dewdman42
Newbie
Newbie
Posts: 16
Joined: September 2nd, 2015, 10:16 pm

Re: stuck at "trying to fetch"

Post by Dewdman42 »

Interesting. sabnzbd didn't update itself or anything did it? Very strange that suddenly this would be happening...but that is about the same time it hit here too.

When I try to click on that link I don't get the behavior you do, it goes to another screen which should show the files that are downloading I guess, but the list is empty and nothing downloads.

I also see the following warning in the logs, I don't know if its related:

Code: Select all

2015-09-03 07:45:32,428	ERROR:	Loading /c/.sabnzbd/admin/future/SABnzbd_attrib failed
When I look into that SABnzbd_attrib file, I see the following:

Code: Select all

*
0
None
-100
Trying to fetch NZB from https://nzb.is/getnzb/6ce453a57a0b2a2e7ce72830b1d16e4701435c89.nzb&i=38271&r=4af3dc3b84e33de5XXXXX
https://nzb.is/getnzb/6ce453a57a0b2a2e7ce72830b1d16e4701435c89.nzb&i=38271&r=4af3dc3b84e33de5XXXXX
mogodon
Newbie
Newbie
Posts: 13
Joined: September 3rd, 2015, 10:06 am

Re: stuck at "trying to fetch"

Post by mogodon »

Sorry I don't mean Sab downloads the nzb, I mean if i just go to the link my browser downloads the nzb.

I'm running this on a QNAP NAS if that makes any difference. Just checked my history and the last successful download was 29/08
Dewdman42
Newbie
Newbie
Posts: 16
Joined: September 2nd, 2015, 10:16 pm

Re: stuck at "trying to fetch"

Post by Dewdman42 »

I'm on netgear readynas.
User avatar
sander
Release Testers
Release Testers
Posts: 8829
Joined: January 22nd, 2008, 2:22 pm

Re: stuck at "trying to fetch"

Post by sander »

Dewdman42: what happens when you use HTTP instead of HTTPS?
mogodon: do you use HTTPS too?

@Dewdman42: what happens when you do this in an interactive python session on your NAS:

Code: Select all

$ 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 urllib2
>>> myurl = 'https://nzb.is/getnzb/6ce453a57a0b2a2e7ce72830b1d16e4701435c89.nzb&i=38271&r=4af3dc3b84e33de5XXXXX'
>>> f = urllib2.urlopen(myurl, timeout=2)
>>> f.read()[:100]
'<!DOCTYPE html> <html lang="en"> <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endi'
>>>
Post the output here, in a CODE block.
mogodon
Newbie
Newbie
Posts: 13
Joined: September 3rd, 2015, 10:06 am

Re: stuck at "trying to fetch"

Post by mogodon »

Do you mean on SABNzbd? If so no I don't use https.

I know there is an issue with SSL certificates on the QNAP Nas but I've switched off the SSL option in SickRage
User avatar
sander
Release Testers
Release Testers
Posts: 8829
Joined: January 22nd, 2008, 2:22 pm

Re: stuck at "trying to fetch"

Post by sander »

mogodon wrote:Do you mean on SABNzbd? If so no I don't use https.

I know there is an issue with SSL certificates on the QNAP Nas but I've switched off the SSL option in SickRage
To be 100% sure: Can you post the log line, including the first part of the URL, like the other poster did:

Code: Select all

Trying to fetch NZB from https://nzb.is/
Dewdman42
Newbie
Newbie
Posts: 16
Joined: September 2nd, 2015, 10:16 pm

Re: stuck at "trying to fetch"

Post by Dewdman42 »

I am not using SSL for sabnzbd. I am using SSL over on the indexer.

when I try to use the bit of python code you mentioned above, I get the following error when trying to call urlopen()

Code: Select all

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.7/urllib2.py", line 127, in urlopen
    return _opener.open(url, data, timeout)
  File "/usr/lib/python2.7/urllib2.py", line 407, in open
    response = meth(req, response)
  File "/usr/lib/python2.7/urllib2.py", line 520, in http_response
    'http', request, response, code, msg, hdrs)
  File "/usr/lib/python2.7/urllib2.py", line 445, in error
    return self._call_chain(*args)
  File "/usr/lib/python2.7/urllib2.py", line 379, in _call_chain
    result = func(*args)
  File "/usr/lib/python2.7/urllib2.py", line 528, in http_error_default
    raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
urllib2.HTTPError: HTTP Error 503: Service Temporarily Unavailable
User avatar
sander
Release Testers
Release Testers
Posts: 8829
Joined: January 22nd, 2008, 2:22 pm

Re: stuck at "trying to fetch"

Post by sander »

Dewdman42 wrote:I am not using SSL for sabnzbd. I am using SSL over on the indexer.
The indexer passes a NZB with a HTTPS URL (thus SSL) to SABnzbd, so SABnzbd is instructed to use that, so your SABnzbd does use SSL. Agree?

Code: Select all

urllib2.HTTPError: HTTP Error 503: Service Temporarily Unavailable
Explanation: The Web server is effectively 'closed for repair'

So a problem on the server side, I would say.

What do you get when you use

Code: Select all

myurl = 'https://nzb.is/'
with nothing extra in the python interactive prompt?
Dewdman42
Newbie
Newbie
Posts: 16
Joined: September 2nd, 2015, 10:16 pm

Re: stuck at "trying to fetch"

Post by Dewdman42 »

I thought you were asking whether sabnzbd is listening on SSL port, which it is not.

Is there a reason I should be concerned about using SSL url on the indexer?

I tried the python with the simpler URL and it gets past the urlopen call no problem but the next line you told me to execute I get a syntax error

Code: Select all

SyntaxError: invalid syntax
Dewdman42
Newbie
Newbie
Posts: 16
Joined: September 2nd, 2015, 10:16 pm

Re: stuck at "trying to fetch"

Post by Dewdman42 »

using my web browser to head to https://nzb.is/ shows it up and running.

I am getting similar problems with usenet-crawler
mogodon
Newbie
Newbie
Posts: 13
Joined: September 3rd, 2015, 10:06 am

Re: stuck at "trying to fetch"

Post by mogodon »

sander wrote:
mogodon wrote:Do you mean on SABNzbd? If so no I don't use https.

I know there is an issue with SSL certificates on the QNAP Nas but I've switched off the SSL option in SickRage
To be 100% sure: Can you post the log line, including the first part of the URL, like the other poster did:

Code: Select all

Trying to fetch NZB from https://nzb.is/
Ah yes the indexers are https as most have switched to that only.

Code: Select all

INFO::[urlgrabber:116] Grabbing URL https://api.oznzb.com/getnzb/<api key>
INFO::[urlgrabber:199] Retry URL https://api.oznzb.com/getnzb/<api key>
INFO::[urlgrabber:116] Grabbing URL https://www.usenet-crawler.com/getnzb/<api key>
INFO::[urlgrabber:199] Retry URL https://www.usenet-crawler.com/getnzb/<api key>
INFO::[urlgrabber:116] Grabbing URL https://nzbindex.in/getnzb/<api key>
INFO::[urlgrabber:199] Retry URL https://nzbindex.in/getnzb/<api key>
Post Reply