Page 1 of 1

UnknownHostException: raw.githubusercontent.com with 4.5

Posted: 14 Nov 2014, 10:17
by zirum
Hi!

Trying out Filebot on my Rasberry running with AMC, but are getting the following Unknown Host exception:

Code: Select all

UnknownHostException: raw.githubusercontent.com
java.net.UnknownHostException: raw.githubusercontent.com
        at net.filebot.web.WebRequest.fetch(WebRequest.java:116)
        at net.filebot.web.WebRequest.fetchIfModified(WebRequest.java:94)
        at net.filebot.web.CachedResource.fetchData(CachedResource.java:32)
        at net.filebot.web.CachedResource.fetchData(CachedResource.java:11)
        at net.filebot.web.AbstractCachedResource.fetch(AbstractCachedResource.java:133)
        at net.filebot.web.AbstractCachedResource.get(AbstractCachedResource.java:78)
        at net.filebot.cli.ArgumentProcessor$DefaultScriptProvider.fetchScript(ArgumentProcessor.java:201)
        at net.filebot.cli.ScriptShell.runScript(ScriptShell.java:82)
        at net.filebot.cli.ArgumentProcessor.process(ArgumentProcessor.java:109)
        at net.filebot.Main.main(Main.java:183)
Failure (°_°)
Command run is:

Code: Select all

sudo filebot -script fn:amc --output "/mnt/netshares" --log-file "/mnt/netshares/Regular/Downloads/amc.log" --action test -non-strict "/mnt/netshares/Regular/Downloads/Finished/" --def excludeList="/mnt/netshares/Regular/Downloads/amc.txt"
Setup:
Hardware: Raspberry Pi rev.B
Filebot: filebot_4.5_arm.ipk
Java: java version "1.8.0-ea", Java(TM) SE Runtime Environment (build 1.8.0-ea-b108), Java HotSpot(TM) Client VM (build 25.0-b50, mixed mode)
Internet: OpenVPN through Private Internet Access (works ok at least for transmission on same Raspberry)

Any thoughts on the problem? The github page reports 404 - ..."There isn't a GitHub Page here" on the host it is trying to reach.
Would love to see how well the script can sort my files :) Thanks in advance!

Re: UnknownHostException: raw.githubusercontent.com with 4.5

Posted: 14 Nov 2014, 12:02
by rednoah
Basic network issue: The DNS hostname cannot be resolved => general network issue on your device

Code: Select all

UnknownHostException: raw.githubusercontent.com
I suggest Google to find a solution.

You could also check the FAQ Q: FileBot can't connect to any of the webservices. It's not firewall issue. What else can I try? though in your cases it seems like a simple issue with DNS name resolution.

Re: UnknownHostException: raw.githubusercontent.com with 4.5

Posted: 14 Nov 2014, 12:11
by zirum
Good call rednoah, awesome!

Ran ipconfig on my windows machine, and added the dns from there in config by editing the following:

Code: Select all

sudo nano /etc/resolv.conf
Thing seem to work now, so can continue testing :-)