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
1
vote
1 answer

.NET web 2.0 API, 503 Service unavailable

I created a .NET web 2.0 REST GET API. which reads reads a large XML file and then insert the data in Database (SQL Server). But when I run the API, then, after some time browser/Rest-Client returns 503 service unavailable message. Works fine when I…
1
vote
1 answer

Configure Apache 503 sensitivity

I Currently have a service with a very high traffic (about 1000 connections/second, and this is not reducable with optimization anymore). Until 1 week ago, I was at AWS and had twiched some of my apache/NGNIX configurations to handle that load.…
1
vote
1 answer

.htaccess custom 503 page won't work

First 3 Lines of my .htaccess file look like that: ErrorDocument 403 /wartung/404.html ErrorDocument 404 /wartung/404.html ErrorDocument 503 /wartung/503.html While 403 and 404 work out 503 still shows the old Server default Message. Files are all…
i3rutus
  • 249
  • 5
  • 12
1
vote
0 answers

gatsby js with godaddy results in 503 error

I am running a 'headless' (decoupled) Drupal install on GoDaddy hosting, using JSON API and GatsbyJS. Drupal > Gatsby works well locally, but when hosted with GoDaddy the Gatsby 'develop' command results in a 503 error, which I assume is GoDaddy…
tomath
  • 21
  • 2
1
vote
2 answers

cors working on localhost but not on production

I'm having a strange issue with express cors. My Cors config works fine on localhost but it isn't working on the production. I'm always getting this error. Failed to load https://my-movie-db-backend-roberto.herokuapp.com/auth/login: Response to…
Robert
  • 187
  • 2
  • 9
1
vote
1 answer

503 error when trying to access VSTS

We've been using VSTS for the last couple of months with no issues at all, until this morning during the day it suddenly became very slow and started giving us 503 error when trying to access it. No particular actions were being done on it, just…
1
vote
0 answers

Sending variables from the controller to the 503 page

I'm developing with Symfony2, I want to send the variable myDate to my custom page 503 (error503.html.twig). {# error503.html.twig #} {% if myDate is not null or myDate is not empty %} Start date : {{ myDate }} {% else %} {{…
doulouM
  • 41
  • 6
1
vote
1 answer

session_start cause 503 error with php7.0-fpm

I have olds applications (PHP 5.3, Apache 2.2) that I must migrate to PHP7.0-FPM and Apache 2.4 (with Docker). All applications seem to work except one. This application use Prototype 1.6.0.3 and when Ajax.Request is called, a 503 error is displayed…
M4kn4sh
  • 540
  • 7
  • 22
1
vote
2 answers

Cannot download file in R - status 503

I'm trying to download file: > URL <- "https://www.bitmarket.pl/graphs/BTCPLN/90m.json" > download.file(URL, destfile = "res.json", method = "curl") % Total % Received % Xferd Average Speed Time Time Time Current …
Taz
  • 5,755
  • 6
  • 26
  • 63
1
vote
1 answer

503 Service Unavailable...Trying to Read Configuration data from file

I tried to go to one of my local websites and encountered this error in the event log: "The worker process for application pool 'My Website' encountered an error 'Cannot read configuration file ' trying to read configuration data from file '\\?\',…
1
vote
2 answers

How can I produce a 503 error locally with Tomcat?

I am working on a project developed with Spring Boot using version 8.5.9 of Tomcat. The application offers RESTfull web services in JAX RS. In the Prod environment, sometimes I get an error 503 Service not available, but I can not reproduce it…
Mahmoud
  • 325
  • 10
  • 25
1
vote
2 answers

phpinfo() causing 503 service temporarily unavailable error

I'm experiencing the weirdest problem. I've been working on a file upload problem for the last few days and have been using phpinfo() to track changes to INI settings. The last time I touched it was two days ago... it all worked then. Today,…
JBH
  • 1,823
  • 1
  • 19
  • 30
1
vote
1 answer

Foreach function gives 503 Service Unavailable

It is 1 AM and I am struggling for 3-4 hours to see what's wrong with my script... My database has ~400 emails. I set $ChunkSize as counter for the loop and also to count which is the next chunk to be processed. I've set some echo() to debug echo…
Sumutiu Marius
  • 421
  • 4
  • 18
1
vote
0 answers

503 Service Unavailable from manageiq docker container

My Manageiq docker container(manageiq/manageiq:fine-1) throws the following error messsage. My OS is windows 10. The ref site is link. The environmental variables are all default. But this url https://localhost:8443 throws the below error message…
Joseph Hwang
  • 1,337
  • 3
  • 38
  • 67
1
vote
1 answer

How to configure 503 status for HTTPS?

I set up a maintenance page for my site so when users visit, they are returned with the 503 status and redirected to a custom maintenance.php page. So it works fine and I can clearly see in my browsers that it is properly returning 503 as long as I…
d.r.v.
  • 117
  • 1
  • 1
  • 8