Squid 503 service unavailable. Might related to domain name resolutionFilezilla connection erroriptables refuses connections to squid port on CentOS 5.5Squid cache_peer setup for DNS issuesNginx + Haproxy + Thin + Rails - 503 Service Unavailable -Squid proxy in cent os often disconnected with error : tunnelConnectTimeout(): tunnelState->servers is NULLsquid slow initial webpage loadingIptables forward port 80 to remote squidCentOS + IPTablesHow to set http_proxy env variable and have wget using it transparently before login (Debian)Squid service starts and stops forever

Multi tool use
Multi tool use

Compact Mechanical Energy Source

What's the connection between "kicking a pigeon" and "how a bill becomes a law"?

A Mathematical Discussion: Fill in the Blank

Draw a checker pattern with a black X in the center

Probability of fraction not being able to be simplified

Can a Beholder use rays in melee range?

Do firearms count as ranged weapons?

Preserving culinary oils

Restoring order in a deck of playing cards

How to prevent bad sectors?

Split polygon using another polygon in QGIS

Why doesn't the Earth's acceleration towards the Moon accumulate to push the Earth off its orbit?

How did early x86 BIOS programmers manage to program full blown TUIs given very few bytes of ROM/EPROM?

How can I prevent interns from being expendable?

If a massive object like Jupiter flew past the Earth how close would it need to come to pull people off of the surface?

Question about exercise 11.5 in TeXbook

Were pen cap holes designed to prevent death by suffocation if swallowed?

Is there an evolutionary advantage to having two heads?

Why does the UK have more political parties than the US?

How is character development a major role in the plot of a story

Plot exactly N bounce of a ball

What caused the tendency for conservatives to not support climate change reform?

What are the benefits of cryosleep?

Is a post-climate apocolypse city in which many or most insects have disappeared realistic?



Squid 503 service unavailable. Might related to domain name resolution


Filezilla connection erroriptables refuses connections to squid port on CentOS 5.5Squid cache_peer setup for DNS issuesNginx + Haproxy + Thin + Rails - 503 Service Unavailable -Squid proxy in cent os often disconnected with error : tunnelConnectTimeout(): tunnelState->servers is NULLsquid slow initial webpage loadingIptables forward port 80 to remote squidCentOS + IPTablesHow to set http_proxy env variable and have wget using it transparently before login (Debian)Squid service starts and stops forever






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















We had several linux servers and only one could connect the internet. So I built squid proxy on the server and other servers could use the proxy via environment variables like http_proxy="", ftp_proxy="" and so on.



But suddenly I found the proxy not working for other servers. The command and response was



yangjc@jupiter ~ $ wget www.baidu.com
--2018-09-25 11:41:06-- http://www.baidu.com/
Connecting to 202.205.131.254:7777... connected.
Proxy request sent, awaiting response... 503 Service Unavailable
2018-09-25 11:41:06 ERROR 503: Service Unavailable.


yangjc@jupiter ~ $ wget https://www.baidu.com
--2018-09-25 11:41:45-- https://www.baidu.com/
Connecting to 202.205.131.254:7777... connected.
Proxy tunneling failed: Service UnavailableUnable to establish SSL connection.


202.205.131.254:7777 was the IP and port of the proxy server. Seems that the proxy server could receive the requests, but failed to respond and return the results. I made sure the squid was on and the proxy server could connect the internet.



However, when I directly gave the IP of the same page, it worked!



yangjc@jupiter ~ $ wget 119.75.216.20 
--2018-09-25 11:42:25-- http://119.75.216.20/
Connecting to 202.205.131.254:7777... connected.
Proxy request sent, awaiting response... 200 OK
Cookie coming from 119.75.216.20 attempted to set domain to 119.75.216.20
Length: 2381 (2.3K) [text/html]
Saving to: 'index.html.2'

100% [======================================================================================================================================================================================================================================>] 2,381 --.-K/s in 0s

2018-09-25 11:42:25 (17.1 MB/s) - 'index.html.2' saved [2381/2381]


The DNS on the proxy server worked well and I could download pages via domain names on the proxy server. So where was the problem? Could anybody give some clues and many thanks!



By the way, our servers were under a third party managed firewall. Recently they tightened their strategy and I thought this had something to do with our problem. I discussed with them and we couldn't find the problem. So I will also be grateful if someone can tell how to find useful messages about the problem so I can discuss with them. Many thanks!










share|improve this question




























    0















    We had several linux servers and only one could connect the internet. So I built squid proxy on the server and other servers could use the proxy via environment variables like http_proxy="", ftp_proxy="" and so on.



    But suddenly I found the proxy not working for other servers. The command and response was



    yangjc@jupiter ~ $ wget www.baidu.com
    --2018-09-25 11:41:06-- http://www.baidu.com/
    Connecting to 202.205.131.254:7777... connected.
    Proxy request sent, awaiting response... 503 Service Unavailable
    2018-09-25 11:41:06 ERROR 503: Service Unavailable.


    yangjc@jupiter ~ $ wget https://www.baidu.com
    --2018-09-25 11:41:45-- https://www.baidu.com/
    Connecting to 202.205.131.254:7777... connected.
    Proxy tunneling failed: Service UnavailableUnable to establish SSL connection.


    202.205.131.254:7777 was the IP and port of the proxy server. Seems that the proxy server could receive the requests, but failed to respond and return the results. I made sure the squid was on and the proxy server could connect the internet.



    However, when I directly gave the IP of the same page, it worked!



    yangjc@jupiter ~ $ wget 119.75.216.20 
    --2018-09-25 11:42:25-- http://119.75.216.20/
    Connecting to 202.205.131.254:7777... connected.
    Proxy request sent, awaiting response... 200 OK
    Cookie coming from 119.75.216.20 attempted to set domain to 119.75.216.20
    Length: 2381 (2.3K) [text/html]
    Saving to: 'index.html.2'

    100% [======================================================================================================================================================================================================================================>] 2,381 --.-K/s in 0s

    2018-09-25 11:42:25 (17.1 MB/s) - 'index.html.2' saved [2381/2381]


    The DNS on the proxy server worked well and I could download pages via domain names on the proxy server. So where was the problem? Could anybody give some clues and many thanks!



    By the way, our servers were under a third party managed firewall. Recently they tightened their strategy and I thought this had something to do with our problem. I discussed with them and we couldn't find the problem. So I will also be grateful if someone can tell how to find useful messages about the problem so I can discuss with them. Many thanks!










    share|improve this question
























      0












      0








      0








      We had several linux servers and only one could connect the internet. So I built squid proxy on the server and other servers could use the proxy via environment variables like http_proxy="", ftp_proxy="" and so on.



      But suddenly I found the proxy not working for other servers. The command and response was



      yangjc@jupiter ~ $ wget www.baidu.com
      --2018-09-25 11:41:06-- http://www.baidu.com/
      Connecting to 202.205.131.254:7777... connected.
      Proxy request sent, awaiting response... 503 Service Unavailable
      2018-09-25 11:41:06 ERROR 503: Service Unavailable.


      yangjc@jupiter ~ $ wget https://www.baidu.com
      --2018-09-25 11:41:45-- https://www.baidu.com/
      Connecting to 202.205.131.254:7777... connected.
      Proxy tunneling failed: Service UnavailableUnable to establish SSL connection.


      202.205.131.254:7777 was the IP and port of the proxy server. Seems that the proxy server could receive the requests, but failed to respond and return the results. I made sure the squid was on and the proxy server could connect the internet.



      However, when I directly gave the IP of the same page, it worked!



      yangjc@jupiter ~ $ wget 119.75.216.20 
      --2018-09-25 11:42:25-- http://119.75.216.20/
      Connecting to 202.205.131.254:7777... connected.
      Proxy request sent, awaiting response... 200 OK
      Cookie coming from 119.75.216.20 attempted to set domain to 119.75.216.20
      Length: 2381 (2.3K) [text/html]
      Saving to: 'index.html.2'

      100% [======================================================================================================================================================================================================================================>] 2,381 --.-K/s in 0s

      2018-09-25 11:42:25 (17.1 MB/s) - 'index.html.2' saved [2381/2381]


      The DNS on the proxy server worked well and I could download pages via domain names on the proxy server. So where was the problem? Could anybody give some clues and many thanks!



      By the way, our servers were under a third party managed firewall. Recently they tightened their strategy and I thought this had something to do with our problem. I discussed with them and we couldn't find the problem. So I will also be grateful if someone can tell how to find useful messages about the problem so I can discuss with them. Many thanks!










      share|improve this question














      We had several linux servers and only one could connect the internet. So I built squid proxy on the server and other servers could use the proxy via environment variables like http_proxy="", ftp_proxy="" and so on.



      But suddenly I found the proxy not working for other servers. The command and response was



      yangjc@jupiter ~ $ wget www.baidu.com
      --2018-09-25 11:41:06-- http://www.baidu.com/
      Connecting to 202.205.131.254:7777... connected.
      Proxy request sent, awaiting response... 503 Service Unavailable
      2018-09-25 11:41:06 ERROR 503: Service Unavailable.


      yangjc@jupiter ~ $ wget https://www.baidu.com
      --2018-09-25 11:41:45-- https://www.baidu.com/
      Connecting to 202.205.131.254:7777... connected.
      Proxy tunneling failed: Service UnavailableUnable to establish SSL connection.


      202.205.131.254:7777 was the IP and port of the proxy server. Seems that the proxy server could receive the requests, but failed to respond and return the results. I made sure the squid was on and the proxy server could connect the internet.



      However, when I directly gave the IP of the same page, it worked!



      yangjc@jupiter ~ $ wget 119.75.216.20 
      --2018-09-25 11:42:25-- http://119.75.216.20/
      Connecting to 202.205.131.254:7777... connected.
      Proxy request sent, awaiting response... 200 OK
      Cookie coming from 119.75.216.20 attempted to set domain to 119.75.216.20
      Length: 2381 (2.3K) [text/html]
      Saving to: 'index.html.2'

      100% [======================================================================================================================================================================================================================================>] 2,381 --.-K/s in 0s

      2018-09-25 11:42:25 (17.1 MB/s) - 'index.html.2' saved [2381/2381]


      The DNS on the proxy server worked well and I could download pages via domain names on the proxy server. So where was the problem? Could anybody give some clues and many thanks!



      By the way, our servers were under a third party managed firewall. Recently they tightened their strategy and I thought this had something to do with our problem. I discussed with them and we couldn't find the problem. So I will also be grateful if someone can tell how to find useful messages about the problem so I can discuss with them. Many thanks!







      linux proxy squid






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Sep 26 '18 at 4:01









      yangjcyangjc

      11




      11




















          1 Answer
          1






          active

          oldest

          votes


















          0














          I might be wrong, but I think you have a problem with SSL. Unless your proxy is configured with a SSL certificate for Man In The Middle interception, you can't proxy https. The plain http fail might be because Baidu is redirecting to https ?



          yangjc@jupiter ~ $ wget www.baidu.com
          --2018-09-25 11:41:06-- http://www.baidu.com/
          Connecting to 202.205.131.254:7777... connected.
          Proxy request sent, awaiting response... 503 Service Unavailable
          2018-09-25 11:41:06 ERROR 503: Service Unavailable.


          yangjc@jupiter ~ $ wget https://www.baidu.com
          --2018-09-25 11:41:45-- https://www.baidu.com/
          Connecting to 202.205.131.254:7777... connected.
          Proxy tunneling failed: Service UnavailableUnable to establish SSL connection.


          In any case, you should post your squid configuration, if your clients are using a transparent proxy or direct/explicit (I'm guessing explicit due to the variables), which version of Squid are you using, the network configuration of the proxy and the clients, etc. Information regarding the environment is critical to understand why something is happening.






          share|improve this answer























            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "2"
            ;
            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',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f932678%2fsquid-503-service-unavailable-might-related-to-domain-name-resolution%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            I might be wrong, but I think you have a problem with SSL. Unless your proxy is configured with a SSL certificate for Man In The Middle interception, you can't proxy https. The plain http fail might be because Baidu is redirecting to https ?



            yangjc@jupiter ~ $ wget www.baidu.com
            --2018-09-25 11:41:06-- http://www.baidu.com/
            Connecting to 202.205.131.254:7777... connected.
            Proxy request sent, awaiting response... 503 Service Unavailable
            2018-09-25 11:41:06 ERROR 503: Service Unavailable.


            yangjc@jupiter ~ $ wget https://www.baidu.com
            --2018-09-25 11:41:45-- https://www.baidu.com/
            Connecting to 202.205.131.254:7777... connected.
            Proxy tunneling failed: Service UnavailableUnable to establish SSL connection.


            In any case, you should post your squid configuration, if your clients are using a transparent proxy or direct/explicit (I'm guessing explicit due to the variables), which version of Squid are you using, the network configuration of the proxy and the clients, etc. Information regarding the environment is critical to understand why something is happening.






            share|improve this answer



























              0














              I might be wrong, but I think you have a problem with SSL. Unless your proxy is configured with a SSL certificate for Man In The Middle interception, you can't proxy https. The plain http fail might be because Baidu is redirecting to https ?



              yangjc@jupiter ~ $ wget www.baidu.com
              --2018-09-25 11:41:06-- http://www.baidu.com/
              Connecting to 202.205.131.254:7777... connected.
              Proxy request sent, awaiting response... 503 Service Unavailable
              2018-09-25 11:41:06 ERROR 503: Service Unavailable.


              yangjc@jupiter ~ $ wget https://www.baidu.com
              --2018-09-25 11:41:45-- https://www.baidu.com/
              Connecting to 202.205.131.254:7777... connected.
              Proxy tunneling failed: Service UnavailableUnable to establish SSL connection.


              In any case, you should post your squid configuration, if your clients are using a transparent proxy or direct/explicit (I'm guessing explicit due to the variables), which version of Squid are you using, the network configuration of the proxy and the clients, etc. Information regarding the environment is critical to understand why something is happening.






              share|improve this answer

























                0












                0








                0







                I might be wrong, but I think you have a problem with SSL. Unless your proxy is configured with a SSL certificate for Man In The Middle interception, you can't proxy https. The plain http fail might be because Baidu is redirecting to https ?



                yangjc@jupiter ~ $ wget www.baidu.com
                --2018-09-25 11:41:06-- http://www.baidu.com/
                Connecting to 202.205.131.254:7777... connected.
                Proxy request sent, awaiting response... 503 Service Unavailable
                2018-09-25 11:41:06 ERROR 503: Service Unavailable.


                yangjc@jupiter ~ $ wget https://www.baidu.com
                --2018-09-25 11:41:45-- https://www.baidu.com/
                Connecting to 202.205.131.254:7777... connected.
                Proxy tunneling failed: Service UnavailableUnable to establish SSL connection.


                In any case, you should post your squid configuration, if your clients are using a transparent proxy or direct/explicit (I'm guessing explicit due to the variables), which version of Squid are you using, the network configuration of the proxy and the clients, etc. Information regarding the environment is critical to understand why something is happening.






                share|improve this answer













                I might be wrong, but I think you have a problem with SSL. Unless your proxy is configured with a SSL certificate for Man In The Middle interception, you can't proxy https. The plain http fail might be because Baidu is redirecting to https ?



                yangjc@jupiter ~ $ wget www.baidu.com
                --2018-09-25 11:41:06-- http://www.baidu.com/
                Connecting to 202.205.131.254:7777... connected.
                Proxy request sent, awaiting response... 503 Service Unavailable
                2018-09-25 11:41:06 ERROR 503: Service Unavailable.


                yangjc@jupiter ~ $ wget https://www.baidu.com
                --2018-09-25 11:41:45-- https://www.baidu.com/
                Connecting to 202.205.131.254:7777... connected.
                Proxy tunneling failed: Service UnavailableUnable to establish SSL connection.


                In any case, you should post your squid configuration, if your clients are using a transparent proxy or direct/explicit (I'm guessing explicit due to the variables), which version of Squid are you using, the network configuration of the proxy and the clients, etc. Information regarding the environment is critical to understand why something is happening.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Sep 26 '18 at 4:25









                LeoLeo

                1,525415




                1,525415



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Server Fault!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f932678%2fsquid-503-service-unavailable-might-related-to-domain-name-resolution%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    F4Alzv3fNx A4CIhUrjK C6cSyiLVxHHFmqj,dN,WfUQhjjdsNZetNQg5MMk
                    9W7E,20,jBSr RE7kgILrcQSwAWFtoOI7UN2m QP9uA euxZ2Av VNVJQtzc

                    Popular posts from this blog

                    RemoteApp sporadic failureWindows 2008 RemoteAPP client disconnects within a matter of minutesWhat is the minimum version of RDP supported by Server 2012 RDS?How to configure a Remoteapp server to increase stabilityMicrosoft RemoteApp Active SessionRDWeb TS connection broken for some users post RemoteApp certificate changeRemote Desktop Licensing, RemoteAPPRDS 2012 R2 some users are not able to logon after changed date and time on Connection BrokersWhat happens during Remote Desktop logon, and is there any logging?After installing RDS on WinServer 2016 I still can only connect with two users?RD Connection via RDGW to Session host is not connecting

                    Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070

                    Cegueira Índice Epidemioloxía | Deficiencia visual | Tipos de cegueira | Principais causas de cegueira | Tratamento | Técnicas de adaptación e axudas | Vida dos cegos | Primeiros auxilios | Crenzas respecto das persoas cegas | Crenzas das persoas cegas | O neno deficiente visual | Aspectos psicolóxicos da cegueira | Notas | Véxase tamén | Menú de navegación54.054.154.436928256blindnessDicionario da Real Academia GalegaPortal das Palabras"International Standards: Visual Standards — Aspects and Ranges of Vision Loss with Emphasis on Population Surveys.""Visual impairment and blindness""Presentan un plan para previr a cegueira"o orixinalACCDV Associació Catalana de Cecs i Disminuïts Visuals - PMFTrachoma"Effect of gene therapy on visual function in Leber's congenital amaurosis"1844137110.1056/NEJMoa0802268Cans guía - os mellores amigos dos cegosArquivadoEscola de cans guía para cegos en Mortágua, PortugalArquivado"Tecnología para ciegos y deficientes visuales. Recopilación de recursos gratuitos en la Red""Colorino""‘COL.diesis’, escuchar los sonidos del color""COL.diesis: Transforming Colour into Melody and Implementing the Result in a Colour Sensor Device"o orixinal"Sistema de desarrollo de sinestesia color-sonido para invidentes utilizando un protocolo de audio""Enseñanza táctil - geometría y color. Juegos didácticos para niños ciegos y videntes""Sistema Constanz"L'ocupació laboral dels cecs a l'Estat espanyol està pràcticament equiparada a la de les persones amb visió, entrevista amb Pedro ZuritaONCE (Organización Nacional de Cegos de España)Prevención da cegueiraDescrición de deficiencias visuais (Disc@pnet)Braillín, un boneco atractivo para calquera neno, con ou sen discapacidade, que permite familiarizarse co sistema de escritura e lectura brailleAxudas Técnicas36838ID00897494007150-90057129528256DOID:1432HP:0000618D001766C10.597.751.941.162C97109C0155020