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.

535 questions
13
votes
2 answers

Docker - Error response from daemon: received unexpected HTTP status: 503 Service Unavailable

I'm trying to pull/run an image with the following command: docker run -d --name sonarqube -p 9000:9000 sonarqub But I got the following error: Error response from daemon: received unexpected HTTP status: 503 Service Unavailable.
jdoe1980
  • 189
  • 1
  • 1
  • 10
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,506
  • 8
  • 28
  • 49
9
votes
5 answers

How to go into maintainance mode to safely update a production application, in Symfony 2?

I need to update source files (pull and update from the repository) in my production server, run migrations, and regenerate cached assets. Is there any mechanism in Symfony 2 to do this safely? Like putting the site into 'maintainance mode' (which…
HappyDeveloper
  • 12,480
  • 22
  • 82
  • 117
9
votes
2 answers

Mono + apache2 = Service Temporarily Unavailable (503)

For a week now I've been trying to get my mono configuration running with apache. I must have tried virtually anything, shamefully I notice no changes, the problem remains the same. When I try to connect to the server I get a 503 error: Service…
9
votes
1 answer

How to Create A Custom Apache 503 Error Page

I created an HTML document that will display that the server is not ready yet, and then redirect to another page. I want this to be the 503 error page. What file do I need to edit in Apache to get this custom HTML to be my new 503 error page? I…
snowfi6916
  • 697
  • 4
  • 9
  • 21
8
votes
1 answer

IIS 7.0 503 errors with generic handler (.ashx) implementing IHttpAsyncHandler

I'm running into some performance issues using a generic handler that implements IHttpAsyncHandler. At its simplest, the handler receives a GET request, and 20 seconds later ends the response after writing '< timeout / >' to the response. When…
spender
  • 117,338
  • 33
  • 229
  • 351
8
votes
2 answers

Git: Received HTTP code 503 from proxy after CONNECT

I checked a lot of post related to this issue, but nothing seems to fix my problem. So now I hope you guys can give me the magic answer. I'm using Intellij (but also tried it with SourceTree) to pull/push/clone a repository from Fisheye. However I'm…
8
votes
2 answers

Python requests library Exception handling

I am creating a download service using the python requests library (See here) to download data from another server. The problem is that sometimes I get a 503 error and I need to display an appropriate message. See sample code below: import…
Frankline
  • 40,277
  • 8
  • 44
  • 75
8
votes
4 answers

Why does Azure give me an intermittent Error 503. The service is unavailable?

I have an Azure service that has been running for a long period of time. It builds a word or powerpoint document based on arguments in the request and returns a uri to the build document. This is access via a visualforce page, when you click a…
Flippsie
  • 472
  • 1
  • 7
  • 19
7
votes
1 answer

Google App Engine Error 503 - Service Unavailable

For the past couple of days, every time I try to run my web application, Error - 503 has been showing up. This happens even when I try to go to the admin page. Is this a problem with Google?
dev123
  • 125
  • 1
  • 2
  • 7
7
votes
0 answers

503 return from server is branded as CORS violation by Chrome

The following has been seen in Chrome's console (anonymized domains, boldface has been added): > somesite.ourdomain.org:44301/api/v1.0/AppCache/AdministrationStatusApi:1 GET https://devesaapi.abim.org:44301/api/v1.0/AppCache/AdministrationStatusApi…
Ross Presser
  • 6,027
  • 1
  • 34
  • 66
7
votes
3 answers

HTTP 503 Error while using python requests module

I'm trying to make a HTTP request but the website that I currently can reach from my Firefox browser response 503 error. Code itself is really simple. After some search in the net I added user-Agent parameter to request but it didn't help either.…
erondem
  • 482
  • 1
  • 11
  • 24
7
votes
1 answer

Heroku H18 503 "Request Interrupted" errors

I see quite a few of these. I understand what they mean, which is why I can't understand why it is happening. Is very inconsistent, and does not appear to be a timeout issue. Relevant stuff: Php/laravel/Postgres Heroku I force SSL I route / to…
Nick
  • 1,194
  • 1
  • 10
  • 18
7
votes
2 answers

Google Chrome returning 503 Service Unavailable

I have been having an issue lately with Google Chrome. Some sites, seems to be completely random, are returning a 503 Service Unavailable error message. The last one I received was from my hosting provider when trying to access my CPanel. I can…
W3bGuy
  • 735
  • 7
  • 20
7
votes
3 answers

Is it appropriate to return HTTP 503 in response to a database deadlock?

Is it appropriate for a server to return 503 ("Service Unavailable") when the requested operation resulted in a database deadlock? Here is my reasoning: Initially I tried avoiding database deadlocks, but I ran across…
Gili
  • 86,244
  • 97
  • 390
  • 689
1
2
3
35 36