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
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;
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
add a comment |
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
add a comment |
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
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
linux proxy squid
asked Sep 26 '18 at 4:01
yangjcyangjc
11
11
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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.
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
add a comment |
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.
add a comment |
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.
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.
answered Sep 26 '18 at 4:25
LeoLeo
1,525415
1,525415
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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