Page 1 of 1

Docker Sabnzbd URL Fetching failed

Posted: Sun Jul 04, 2021 4:39 pm
by roosey
I'm running Mylar3 and Sabnzbd in Docker

I added my IP to autoProcessComics.cfg and host_return in config.ini

And I get URL Fetching failed : Maximum retries in Sabnzbd

http://170.80.25:8090/api?apikey=123456 ... Empire.nzb

When I try and to navigate to the URL I get failed to open I see the .nzb files in /mylar/cache but sab can't see the the URL

What am I missing?

Re: Docker Sabnzbd URL Fetching failed

Posted: Sun Jul 04, 2021 5:22 pm
by evilhero
Could be one of two possible things:
  • the host_return possibly set wrong - you have to enter it as the full url (ie. http://170.80.25.8090 from what I recall.
  • the host value in Mylar is incorrectly on listening for local hits only (ie. http://localhost). If this is the case, because it's docker - you probably need to set it to the IP of the docker container running Mylar instead of localhost so that it will be able to listen for incoming connections that aren't local to the container itself.
Either of those (or both possibly) should fix things so they're able to retrieve the nzb (since it's the SAB container that's downloading it from the Mylar container).

You might also want to try Completed Download Handling (CDH) - which does away with the whole ComicRN, scripts, host_returns etc. unless you're downloading items outside of Mylar and using the script to attempt to post-process things, there's no real need to be using it as the primary post-processing action.

Re: Docker Sabnzbd URL Fetching failed

Posted: Mon Jul 05, 2021 2:40 pm
by roosey
Thank you mr. evil I didn’t see the forest from the trees and forgot to add the last octet to host_return in my config.ini

Works like a charm now