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
3
votes
2 answers

Node.js consistently giving 503 error

I just installed Node.js, got it working for a while, then tried to run a standard Hello World program. var http = require("http"); http.createServer(function (request, response) { // Send the HTTP header // HTTP Status: 200 : OK //…
unicornication
  • 635
  • 2
  • 7
  • 26
3
votes
2 answers

Mysterious 503 Error with PHP/MySQL File/Database Sync

I am hoping you all can help me out a little. I have spent about 7 hours trying to find an answer and have tried many things so far. I have a PHP script that is used to sync files/database data between 2 servers. Before you guys ask this process is…
MelArlo
  • 71
  • 7
3
votes
3 answers

503 Service Temporarily Unavailable on Magento after Clearing Cache

After clearing the cache in Magento under admin I am left with a 503 error, "Service Temporarily Unavailable". To be clear, this was caused by clearing the cache, 'var/cache'. This is not related to the Maintenance issue that can result in the same…
Gedalya
  • 899
  • 4
  • 16
  • 28
3
votes
2 answers

Multi-language Google Translate API is returing (503) Server Unavailable

I am trying to use Google Translate to translate but it gives error Server Unavailable. What my guess is that when I try to put same thing in the address bar we receive a captcha to fill in. If we get thru the captcha than only it downloads a txt…
Mohit S
  • 13,723
  • 6
  • 34
  • 69
3
votes
5 answers

vCenter Server Appliance 6.0 : 503 Service Unavailable

503 Service Unavailable (Failed to connect to endpoint: [N7Vmacore4Http16LocalServiceSpecE:0x7fc8bad2f810] _serverNamespace = /vsphere-client _isRedirect = false _port = 9090) This is the error i'm constantly getting when trying to connect to the…
mdahhani
  • 84
  • 1
  • 1
  • 8
3
votes
2 answers

WebSphere Returning 503 Error(Servlet has become temporarily unavailable for service) on Static File

I have a WebSphere 8.5.0 application server for development. It is returning a 503 error on a static JavaScript file. This is the HTML that is returned with the error:

Servlet has become temporarily unavailable for…

3
votes
2 answers

ASP.NET website shows 503 Service Unavailable after successful publishing

Every time I try to publish a website, it runs fine but when the website opens up it gives me a, "HTTP Error 503. The service is unavailable." Everywhere I look on the internet talks about it being my application pool but that seems to be running…
Martin Hall
  • 81
  • 2
  • 3
  • 10
3
votes
1 answer

http request fails due to json size - response 503 and Heroku error H13

I have a simple flask application running on heroku: from flask import Flask app = Flask(__name__) @app.route('/test', methods=['POST']) def test(): return 'OK' Incredibly it succeeds or fails, depending on the size of the json I send. Here's…
Jonathan Livni
  • 101,334
  • 104
  • 266
  • 359
3
votes
2 answers

nginx maintainence page with ip whitelist

For my site I'd like to be able to put up a maintenance 503 page but with a whitelist of ip-addresses that will be able to use the website as normal Would I have to craft something like this in lua? I see some questions like Nginx Ip Whitelist and…
Neil
  • 5,179
  • 8
  • 48
  • 87
3
votes
0 answers

Django: 503 Service Unavailable

Related: I am total new to Python and its frameworks. Just trying some hands on Django after some Python fundamentals. Problem: Right now I am trying to run Django server after first installation. The server runs without any error but when I try to…
Yousuf Memon
  • 4,638
  • 12
  • 41
  • 57
3
votes
2 answers

Varnish/Apache Random 503 Errors

I'm running cPanel on a Rackspace cloud server that's hosting about 30 websites. I'm using Varnish 3.0.3 + Apache 2.2.23. I'm getting random 503 errors. If I restart the httpd process, they go away. I checked the Apache error_log, and I don't see…
Gray Loon
  • 51
  • 1
  • 6
3
votes
1 answer

How to Create 503 Response Header in ASP.Net 4 C#

I'm trying to create a Temporarily Down for Site Maintenance holding page for a website. The website is an asp.net 4 webform site. I've created a offline.aspx page that I will redirect all traffic to when I take the site down. On this page, I…
OpenR
  • 186
  • 1
  • 11
3
votes
2 answers

Weblogic errors after getting deployed (published) : Error 503--Service Unavailable

I have a small web application where I am using Spring, Hibernate and JSF2.0. I am deploying my application to Weblogic 10.3.6 which in integrated with Eclipse server. When I publish application to server, it gets published(deployed) however it…
Jacob
  • 14,463
  • 65
  • 207
  • 320
2
votes
1 answer

Repeating 503's messages when querying DBpedia

I'm conducting a series of queries to DBpedia SPARQL endpoint (from inside a loop). The code looks more or less like this: for (String citySplit : citiesSplit) { RepositoryConnection conn = dbpediaEndpoint.getConnection(); String sparqlQueryLat…
Xavier
  • 21
  • 2
2
votes
2 answers

Nginx not loading custom maintenance page under @maintenance directive?

I am trying to use Nginx to redirect to a custom maintenance page, with it's own CSS/JS, when a maintenance file exists on the system. However, it just shows me the standard Nginx 503 redirect page? location / { if (-f…
RPH
  • 45
  • 8