[Fuego] Issue installing fuego framework (Failed to fetch http://httpredir.debian.org/debian/dists/jessie/InRelease)

Tim.Bird at sony.com Tim.Bird at sony.com
Mon Dec 3 07:13:31 UTC 2018


I tried a new docker image build, using 'docker build --nocache', and had no problems accessing
the httpredir site.

Note that this was outside a corporate environment.  That is, I had no VPN or proxy or firewall
(that I was aware of).

I also tracked down a fix suggested by profusion, that seems to indicate that you can substitute
deb.debian.org for httpredir.debian.org.

Since you are also seeing problems with security.debian.org, I'm not sure this will be a complete
fix, but can you please try out the following patch:

diff --git a/Dockerfile b/Dockerfile
index 269e1f6..79b07a4 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -21,8 +21,8 @@ ENV https_proxy ${HTTP_PROXY}
 ARG DEBIAN_FRONTEND=noninteractive
 
 WORKDIR /
-RUN echo deb http://httpredir.debian.org/debian jessie main non-free > /etc/apt/sources.list
-RUN echo deb http://httpredir.debian.org/debian jessie-updates main non-free >> /etc/apt/sources.list
+RUN echo deb http://deb.debian.org/debian jessie main non-free > /etc/apt/sources.list
+RUN echo deb http://deb.debian.org/debian jessie-updates main non-free >> /etc/apt/sources.list
 RUN echo deb http://security.debian.org/ jessie/updates main >> /etc/apt/sources.list
 RUN if [ -n "$HTTP_PROXY" ]; then echo 'Acquire::http::proxy "'$HTTP_PROXY'";' > /etc/apt/apt.conf.d/80proxy; fi
 RUN apt-get update && apt-get -yV install \

I'm guessing that something has changed in your local environment, to make httpredir.debian.org and
security.debian.org unavailable to your machine.

The message seem to indicate an error "resolving" the domain name, which may indicate some
kind of DNS error.  You might try changing your dns server to a known-good one.  You might
try changing the nameserver in /etc/resolv.conf to 8.8.8.8 (which is Google's global DNS server).

You might also look up DNS errors on the Internet to see different methods for fixing DNS resolving
errors.

Hopefully one of these suggestions will help you out.
 -- Tim


> -----Original Message-----
> From: Dhinakar Kalyanasundaram 
> Hi Daniel,
> 
> Thanks for trying it out and updating me.
> 
> I tried again today in my office and got the same error (mentioned below).
> 
> ...........
> 
> Step 12/57 : RUN apt-get update && apt-get -yV install  apt-utils daemon gcc
> make cmake python-paramiko python-lxml python-simplejson   python-
> matplotlib python-serial python-yaml python-openpyxl python-requests
> python-reportlab libtool xmlstarlet autoconf automake rsync openjdk-7-jre
> openjdk-7-jdk         iperf netperf netpipe-tcp sshpass wget git diffstat sudo
> net-tools vim curl     inotify-tools g++ bzip2 bc libaio-dev gettext pkg-config
> libglib2.0-dev     time python-pip python-xmltodict at minicom lzop
> bsdmainutils u-boot-tools      mc netcat lava-tool openssh-server python-
> parsedatetime         libsdl1.2-dev libcairo2-dev libxmu-dev libxmuu-dev iperf3
> bison flex libelf-dev libssl-dev
>  ---> Running in a1165a985a70
> Err http://httpredir.debian.org jessie InRelease
> 
> Err http://security.debian.org jessie/updates InRelease
> 
> Err http://httpredir.debian.org jessie-updates InRelease
> 
> Err http://security.debian.org jessie/updates Release.gpg
>   Temporary failure resolving 'security.debian.org'
> Err http://httpredir.debian.org jessie Release.gpg
>   Temporary failure resolving 'httpredir.debian.org'
> Err http://httpredir.debian.org jessie-updates Release.gpg
>   Temporary failure resolving 'httpredir.debian.org'
> Reading package lists...
> W: Failed to fetch http://httpredir.debian.org/debian/dists/jessie/InRelease
> 
> W: Failed to fetch http://httpredir.debian.org/debian/dists/jessie-
> updates/InRelease
> 
> W: Failed to fetch http://security.debian.org/dists/jessie/updates/InRelease
> 
> W: Failed to fetch
> http://httpredir.debian.org/debian/dists/jessie/Release.gpg  Temporary
> failure resolving 'httpredir.debian.org'
> 
> W: Failed to fetch
> http://security.debian.org/dists/jessie/updates/Release.gpg  Temporary
> failure resolving 'security.debian.org'
> 
> W: Failed to fetch http://httpredir.debian.org/debian/dists/jessie-
> updates/Release.gpg  Temporary failure resolving 'httpredir.debian.org'
> 
> W: Some index files failed to download. They have been ignored, or old ones
> used instead.
> 
> 
> ........
> 
> 
> 
> Did you try without any changes to the Docker file with the below
> 'httppredir..' urls or change them?
> 
> I will checks once more with our company Linux administrators.
> 
> .....
> 
> RUN echo deb http://httpredir.debian.org/debian jessie main non-free >
> /etc/apt/sources.list
> 
> RUN echo deb http://httpredir.debian.org/debian jessie-updates main non-
> free >> /etc/apt/sources.list
> 
> RUN echo deb http://security.debian.org/ jessie/updates main >>
> /etc/apt/sources.list
> 
> .....
> 
> 
> 
> Regards,
> 
> Dhinakar
> 
> 
> 
> 
> 
> --------- Original Message ---------
> 
> Sender : Daniel Sangorrin <daniel.sangorrin at toshiba.co.jp>
> 
> Date : 2018-12-03 06:26 (GMT+5:30)
> 
> Title : RE: [Fuego] Issue installing fuego framework (Failed to fetch
> http://httpredir.debian.org/debian/dists/jessie/InRelease)
> 
> 
> 
> Hi Dhinakar,
> 
> I tried installing Fuego from scratch on Friday and didn't have any problems
> (apart from the Fuego test release dependencies like Selenium etc which are
> blocked by my company's proxy). Have you tried again? Maybe it was a
> temporary failure.
> 
> Thanks,
> Daniel
> 
> > -----Original Message-----
> > From: fuego-bounces at lists.linuxfoundation.org
> > <fuego-bounces at lists.linuxfoundation.org> On Behalf Of Dhinakar
> > Kalyanasundaram
> > Sent: Friday, November 30, 2018 9:30 PM
> > To: Tim.Bird at sony.com
> > Cc: fuego at lists.linuxfoundation.org
> > Subject: Re: [Fuego] Issue installing fuego framework (Failed to fetch
> > http://httpredir.debian.org/debian/dists/jessie/InRelease)
> >
> > Hi Tim,
> >
> >
> >
> > I just checked the fuego archives, the same issue has been reported by
> Guilherme
> > Camargo <guicc at profusion.mobi <mailto:guicc at profusion.mobi> >
> >
> > in previous thread with subject "Re: [Fuego] [PATCH 1/2] Do not use
> > httpredir.debian.org links."
> >
> > But, I did not see any solution there.
> >
> >
> >
> > Regards,
> >
> > Dhinakar
> >
> >
> >
> >
> >
> > --------- Original Message ---------
> >
> > Sender : Dhinakar Kalyanasundaram <dhinakar.k at samsung.com> Staff
> > Engineer/FDS SW /SSIR/Samsung Electronics
> >
> > Date : 2018-11-30 10:28 (GMT+5:30)
> >
> > Title : RE: RE: Issue installing fuego framework (Failed to fetch
> > http://httpredir.debian.org/debian/dists/jessie/InRelease)
> >
> >
> >
> > Thanks a lot Tim for your prompt reply inspite being away from home.
> >
> >
> >
> > Regards,
> >
> > Dhinakar
> >
> >
> >
> >
> >
> <http://ext.samsung.net/mail/ext/v1/external/status/update?userid=dhina
> kar.k&
> >
> do=bWFpbElEPTIwMTgxMTMwMTIyOTM5ZXBjbXM1cDRlNzM2MmIyYjM3N
> WVmZT
> >
> E0Y2NjOWY5ZjZlZGNmOTUwNSZyZWNpcGllbnRBZGRyZXNzPWZ1ZWdvQGxp
> c3Rz
> > LmxpbnV4Zm91bmRhdGlvbi5vcmc_>
> 
> 
> 
> 
> <http://ext.samsung.net/mail/ext/v1/external/status/update?userid=dhina
> kar.k&do=bWFpbElEPTIwMTgxMjAzMDUxNDMwZXBjbXM1cDhkZGIwMjRiN
> DAyZTY3M2IyZTU4NTE2YzJkMDY1ODgzYSZyZWNpcGllbnRBZGRyZXNzPVRpbS
> 5CaXJkQHNvbnkuY29t>


More information about the Fuego mailing list