Resetting to __noproxy__

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite












I am trying to download the EL repository for RedHat7. Using the instructions given on the ELRepo homepage, I ran into the following error:



rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
curl: (5) Failed connect to wwwproxy.(company).com:(port) ; Connection timed out
error: https://www.elrepo.org/RPM-GPG-KEY-elrepo.org: import read failed(2).


I don't want to use a proxy because I took the machine home, and there is no proxy set up here. Unfortunately, when I try to export a different 'null' proxy, the computer is failing to resolve the issue:



rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
curl: (7) Failed connect to 127.0.0.1:1080; Connection refused
error: https://www.elrepo.org/RPM-GPG-KEY-elrepo.org: import read failed(2).


I get similar issues when I try to export '' and __noproxy__ to my proxy settings. Any suggestions?







share|improve this question
























    up vote
    0
    down vote

    favorite












    I am trying to download the EL repository for RedHat7. Using the instructions given on the ELRepo homepage, I ran into the following error:



    rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
    curl: (5) Failed connect to wwwproxy.(company).com:(port) ; Connection timed out
    error: https://www.elrepo.org/RPM-GPG-KEY-elrepo.org: import read failed(2).


    I don't want to use a proxy because I took the machine home, and there is no proxy set up here. Unfortunately, when I try to export a different 'null' proxy, the computer is failing to resolve the issue:



    rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
    curl: (7) Failed connect to 127.0.0.1:1080; Connection refused
    error: https://www.elrepo.org/RPM-GPG-KEY-elrepo.org: import read failed(2).


    I get similar issues when I try to export '' and __noproxy__ to my proxy settings. Any suggestions?







    share|improve this question






















      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I am trying to download the EL repository for RedHat7. Using the instructions given on the ELRepo homepage, I ran into the following error:



      rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
      curl: (5) Failed connect to wwwproxy.(company).com:(port) ; Connection timed out
      error: https://www.elrepo.org/RPM-GPG-KEY-elrepo.org: import read failed(2).


      I don't want to use a proxy because I took the machine home, and there is no proxy set up here. Unfortunately, when I try to export a different 'null' proxy, the computer is failing to resolve the issue:



      rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
      curl: (7) Failed connect to 127.0.0.1:1080; Connection refused
      error: https://www.elrepo.org/RPM-GPG-KEY-elrepo.org: import read failed(2).


      I get similar issues when I try to export '' and __noproxy__ to my proxy settings. Any suggestions?







      share|improve this question












      I am trying to download the EL repository for RedHat7. Using the instructions given on the ELRepo homepage, I ran into the following error:



      rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
      curl: (5) Failed connect to wwwproxy.(company).com:(port) ; Connection timed out
      error: https://www.elrepo.org/RPM-GPG-KEY-elrepo.org: import read failed(2).


      I don't want to use a proxy because I took the machine home, and there is no proxy set up here. Unfortunately, when I try to export a different 'null' proxy, the computer is failing to resolve the issue:



      rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
      curl: (7) Failed connect to 127.0.0.1:1080; Connection refused
      error: https://www.elrepo.org/RPM-GPG-KEY-elrepo.org: import read failed(2).


      I get similar issues when I try to export '' and __noproxy__ to my proxy settings. Any suggestions?









      share|improve this question











      share|improve this question




      share|improve this question










      asked Oct 16 '17 at 13:53









      ajsmart

      147118




      147118




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote



          accepted










          Typically the proxy is defined in environment variables. You can unset all proxy variables with this command:



          for var in $(env | sed -n '/_proxy=/s/=.*//p'); do unset $var; done





          share|improve this answer




















          • After unsetting the proxy using your command, and doing my rpm import command returns: `curl: could not resolve proxy: https_proxy; Name or service not known error'
            – ajsmart
            Oct 16 '17 at 14:11







          • 1




            Quite pedandic. Maybe this helps: export no_proxy='*'
            – ceving
            Oct 16 '17 at 14:23










          Your Answer







          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "106"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: false,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f398421%2fresetting-to-noproxy%23new-answer', 'question_page');

          );

          Post as a guest






























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote



          accepted










          Typically the proxy is defined in environment variables. You can unset all proxy variables with this command:



          for var in $(env | sed -n '/_proxy=/s/=.*//p'); do unset $var; done





          share|improve this answer




















          • After unsetting the proxy using your command, and doing my rpm import command returns: `curl: could not resolve proxy: https_proxy; Name or service not known error'
            – ajsmart
            Oct 16 '17 at 14:11







          • 1




            Quite pedandic. Maybe this helps: export no_proxy='*'
            – ceving
            Oct 16 '17 at 14:23














          up vote
          0
          down vote



          accepted










          Typically the proxy is defined in environment variables. You can unset all proxy variables with this command:



          for var in $(env | sed -n '/_proxy=/s/=.*//p'); do unset $var; done





          share|improve this answer




















          • After unsetting the proxy using your command, and doing my rpm import command returns: `curl: could not resolve proxy: https_proxy; Name or service not known error'
            – ajsmart
            Oct 16 '17 at 14:11







          • 1




            Quite pedandic. Maybe this helps: export no_proxy='*'
            – ceving
            Oct 16 '17 at 14:23












          up vote
          0
          down vote



          accepted







          up vote
          0
          down vote



          accepted






          Typically the proxy is defined in environment variables. You can unset all proxy variables with this command:



          for var in $(env | sed -n '/_proxy=/s/=.*//p'); do unset $var; done





          share|improve this answer












          Typically the proxy is defined in environment variables. You can unset all proxy variables with this command:



          for var in $(env | sed -n '/_proxy=/s/=.*//p'); do unset $var; done






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Oct 16 '17 at 14:07









          ceving

          1,68621321




          1,68621321











          • After unsetting the proxy using your command, and doing my rpm import command returns: `curl: could not resolve proxy: https_proxy; Name or service not known error'
            – ajsmart
            Oct 16 '17 at 14:11







          • 1




            Quite pedandic. Maybe this helps: export no_proxy='*'
            – ceving
            Oct 16 '17 at 14:23
















          • After unsetting the proxy using your command, and doing my rpm import command returns: `curl: could not resolve proxy: https_proxy; Name or service not known error'
            – ajsmart
            Oct 16 '17 at 14:11







          • 1




            Quite pedandic. Maybe this helps: export no_proxy='*'
            – ceving
            Oct 16 '17 at 14:23















          After unsetting the proxy using your command, and doing my rpm import command returns: `curl: could not resolve proxy: https_proxy; Name or service not known error'
          – ajsmart
          Oct 16 '17 at 14:11





          After unsetting the proxy using your command, and doing my rpm import command returns: `curl: could not resolve proxy: https_proxy; Name or service not known error'
          – ajsmart
          Oct 16 '17 at 14:11





          1




          1




          Quite pedandic. Maybe this helps: export no_proxy='*'
          – ceving
          Oct 16 '17 at 14:23




          Quite pedandic. Maybe this helps: export no_proxy='*'
          – ceving
          Oct 16 '17 at 14:23

















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f398421%2fresetting-to-noproxy%23new-answer', 'question_page');

          );

          Post as a guest













































































          Popular posts from this blog

          Peggy Mitchell

          Palaiologos

          The Forum (Inglewood, California)