Questions tagged [http-status-code-503]

503 is one of the status codes a web server can return to a client application when processing a request. 503 is defined as Service Unavailable

503 Service Unavailable. The server is currently unable to handle the request due to a temporary overloading or maintenance of the server. The implication is that this is a temporary condition which will be alleviated after some delay. If known, the length of the delay may be indicated in a Retry-After header. If no Retry-After is given, the client should handle the response as it would for a 500 response.

Note:

The existence of the 503 status code does not imply that a server must use it when becoming overloaded. Some servers may wish to simply refuse the connection.

Related tags

See also RFC2616.

459 questions
77
votes
3 answers

Return a specific http status code in Rails

How do you return 503 Service Unavailable in Rails for the entire application? Also, how do you do the same for specific controllers?
55
votes
4 answers

What possibilities can cause "Service Unavailable 503" error?

we have a asp.net MVC application deployed to a server, and but when there is too many request to the server, the client will just get a "503 service unavailable" error. But if I deployed the application to another server ( lower hardware…
MemoryLeak
  • 7,036
  • 22
  • 80
  • 127
50
votes
6 answers

IIS7: A process serving application pool 'YYYYY' suffered a fatal communication error with the Windows Process Activation Service

We're running a 32-bit Windows server 2008 with an IIS version of 7. We're attempting to publish an asp.net 4.0 webapp and so far our attempts have only yielded a few warnings in the serverlog without even stopping the 4.0 application pool A…
Enror
  • 505
  • 1
  • 4
  • 8
49
votes
1 answer

How to Detect cause of 503 Service Temporarily Unavailable error and handle it?

i am getting the error 503 Service Temporarily Unavailable many times in my application and i want to detect why this error occurs, how ? if there's a log file or something like that, since i am not familiar with apache. second thing is that, is it…
Mahmoud Saleh
  • 31,861
  • 113
  • 313
  • 484
37
votes
6 answers

A process serving application pool 'Classic .NET AppPool' suffered a fatal communication error with the Windows Process Activation Service

I am running an ASP.NET 3.5 web application on IIS 7 on Windows Server 2008. I received the following error earlier this afternoon: HTTP Error 503. The service is unavailable. I looked in the Event logs and discovered that: A process serving…
Walter Lockhart
  • 1,293
  • 3
  • 20
  • 33
33
votes
2 answers

HTTP Status Code for Captcha

Sometimes (when the resource is requested too often) I'm intercepting the presentation of a (HTML) resource with a captcha. The interception doesn't produce any redirection. It happens all at the same URI. I'm wondering now which HTTP status code…
27
votes
12 answers

Solving SharePoint Server 2010 - 503. The service is unavailable, After installation

Installed: SharePoint Server 2010 for Internet Enterprise Beta (x64) On: Windows Server 2008 Standard (x64) on 64 bit hardware Attempts to access the Central Administration console led to IIS returning 503. The service is unavailable And this error…
RobD
  • 1,672
  • 2
  • 24
  • 46
22
votes
5 answers

AWS ECS 503 Service Temporarily Unavailable while deploying

I am using Amazon Web Services EC2 Container Service with an Application Load Balancer for my app. When I deploy a new version, I get 503 Service Temporarily Unavailable for about 2 minutes. It is a bit more than the startup time of my…
vargen_
  • 2,192
  • 2
  • 21
  • 29
17
votes
2 answers

HTTP status code for overloaded server

Some hours my web site's server has too much load. Which HTTP status code should I send to the Googlebot that visits my website? Is "269 Call Back Later" this suitable for this case, or 503 Service Unavailable or do you have any more suggestions?
trante
  • 30,976
  • 45
  • 174
  • 260
16
votes
4 answers

Error 503 Backend fetch failed

I have this error in my site Error 503 Backend fetch failed Backend fetch failed Guru Meditation: XID: 526707 Varnish cache server Anyone know what may be the cause or how to find out what happens?
16
votes
4 answers

Custom Error Page for Http Error 503

I need to send a Customized Error page for 503 Errors produced by my asp.net website. I have tried to simulate the condition by switching off the application pool (doesn't work) and by flooding my application with requests. Even though IIS sends me…
Storm
  • 3,998
  • 10
  • 36
  • 54
15
votes
4 answers

How to setup custom 503 error page in Nginx that intercepts all requests?

I learned how to get NGINX to return 503 customer error pages, but I cannot find out how to do the following: Sample config file: location / { root www; index index.php; try_files /503.html =503; } error_page…
suchislife
  • 2,892
  • 8
  • 33
  • 63
15
votes
4 answers

HTTPError: HTTP Error 503: Service Unavailable goslate language detection request : Python

I have just started using the goslate library in Python to detect the language of the words in a text but after testing it for 7-8 inputs, I gave the input which had the words written in two languages, Arabic and English. After which, it started…
POOJA GUPTA
  • 2,049
  • 6
  • 25
  • 50
13
votes
4 answers

What raises HTTP 503 and how to change timeout?

I have inherited an application (internal to my company) that uses javascript running in Internet Explorer which makes Ajax calls to a Struts-based application running in WebLogic Server v10. Certain server-side operations in the system are taking…
12
votes
5 answers

Service Unavailable 503 + The HTTP service located at http://localhost/ProductsService/Service.svc is too busy

Hi I have been trying to solve my problem, however couldn't do anything about it. The problem is http://localhost/productservice/service.svc when type this address in my browser it gives me 503 Service Unavailable error When I run my code from VS…
Pinchy
  • 1,426
  • 8
  • 26
  • 46
1
2 3
30 31