Response code: 503 Response message: Service Unavailable
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I have given two url in csv file and trying to load that in jmeter. I am getting 503 response code.
jmeter
add a comment |
I have given two url in csv file and trying to load that in jmeter. I am getting 503 response code.
jmeter
1
What do server logs say?
– NEGR KITAEC
Jan 3 at 9:30
I am very new to Jmeter. I dont know where server log is ? can you help me with that /
– Durairaj s
Jan 3 at 9:32
1
I'm just grabbing my crystal ball and try to solve the mystery. Really, read the logs of your server. 503 means: "The server is currently unavailable (because it is overloaded or down for maintenance). Generally, this is a temporary state."
– maio290
Jan 3 at 9:32
add a comment |
I have given two url in csv file and trying to load that in jmeter. I am getting 503 response code.
jmeter
I have given two url in csv file and trying to load that in jmeter. I am getting 503 response code.
jmeter
jmeter
asked Jan 3 at 9:28


Durairaj sDurairaj s
787
787
1
What do server logs say?
– NEGR KITAEC
Jan 3 at 9:30
I am very new to Jmeter. I dont know where server log is ? can you help me with that /
– Durairaj s
Jan 3 at 9:32
1
I'm just grabbing my crystal ball and try to solve the mystery. Really, read the logs of your server. 503 means: "The server is currently unavailable (because it is overloaded or down for maintenance). Generally, this is a temporary state."
– maio290
Jan 3 at 9:32
add a comment |
1
What do server logs say?
– NEGR KITAEC
Jan 3 at 9:30
I am very new to Jmeter. I dont know where server log is ? can you help me with that /
– Durairaj s
Jan 3 at 9:32
1
I'm just grabbing my crystal ball and try to solve the mystery. Really, read the logs of your server. 503 means: "The server is currently unavailable (because it is overloaded or down for maintenance). Generally, this is a temporary state."
– maio290
Jan 3 at 9:32
1
1
What do server logs say?
– NEGR KITAEC
Jan 3 at 9:30
What do server logs say?
– NEGR KITAEC
Jan 3 at 9:30
I am very new to Jmeter. I dont know where server log is ? can you help me with that /
– Durairaj s
Jan 3 at 9:32
I am very new to Jmeter. I dont know where server log is ? can you help me with that /
– Durairaj s
Jan 3 at 9:32
1
1
I'm just grabbing my crystal ball and try to solve the mystery. Really, read the logs of your server. 503 means: "The server is currently unavailable (because it is overloaded or down for maintenance). Generally, this is a temporary state."
– maio290
Jan 3 at 9:32
I'm just grabbing my crystal ball and try to solve the mystery. Really, read the logs of your server. 503 means: "The server is currently unavailable (because it is overloaded or down for maintenance). Generally, this is a temporary state."
– maio290
Jan 3 at 9:32
add a comment |
1 Answer
1
active
oldest
votes
As per HTTP 503 status code description
The HyperText Transfer Protocol (HTTP) 503 Service Unavailable server error response code indicates that the server is not ready to handle the request.
Common causes are a server that is down for maintenance or that is overloaded. This response should be used for temporary conditions and the Retry-After HTTP header should, if possible, contain the estimated time for the recovery of the service.
Note: together with this response, a user-friendly page explaining the problem should be sent.
Caching-related headers that are sent along with this response should be taken care of, as a 503 status is often a temporary condition and responses shouldn't usually be cached.
So I can think of at least 3 possible issues:
- Your server is really overloaded, you can try checking
Response Data
tab of the View Results Tree listener - if you're lucky - you will the the aforementioned "user-friendly page explaining the problem" Your request is malformed and server is sending 503 response instead of 4xx which indicates client-side error. Double check what URL(s) you're trying to open by looking into
Request
tab of the View Results Tree listener and try to open it in the browser. If you're building the URL from parts (i.e. host, port, protocol, query string, etc.) - you might want to check if the values are correctly read from the CSV file using Debug SamplerI fail to see HTTP Header Manager in your Test Plan, some servers check the client Headers, for example User-Agent or Accept and may report an error if the required header is missing (i.e. indicating that the browser is not supported)
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
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%2fstackoverflow.com%2fquestions%2f54019467%2fresponse-code-503-response-message-service-unavailable%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
As per HTTP 503 status code description
The HyperText Transfer Protocol (HTTP) 503 Service Unavailable server error response code indicates that the server is not ready to handle the request.
Common causes are a server that is down for maintenance or that is overloaded. This response should be used for temporary conditions and the Retry-After HTTP header should, if possible, contain the estimated time for the recovery of the service.
Note: together with this response, a user-friendly page explaining the problem should be sent.
Caching-related headers that are sent along with this response should be taken care of, as a 503 status is often a temporary condition and responses shouldn't usually be cached.
So I can think of at least 3 possible issues:
- Your server is really overloaded, you can try checking
Response Data
tab of the View Results Tree listener - if you're lucky - you will the the aforementioned "user-friendly page explaining the problem" Your request is malformed and server is sending 503 response instead of 4xx which indicates client-side error. Double check what URL(s) you're trying to open by looking into
Request
tab of the View Results Tree listener and try to open it in the browser. If you're building the URL from parts (i.e. host, port, protocol, query string, etc.) - you might want to check if the values are correctly read from the CSV file using Debug SamplerI fail to see HTTP Header Manager in your Test Plan, some servers check the client Headers, for example User-Agent or Accept and may report an error if the required header is missing (i.e. indicating that the browser is not supported)
add a comment |
As per HTTP 503 status code description
The HyperText Transfer Protocol (HTTP) 503 Service Unavailable server error response code indicates that the server is not ready to handle the request.
Common causes are a server that is down for maintenance or that is overloaded. This response should be used for temporary conditions and the Retry-After HTTP header should, if possible, contain the estimated time for the recovery of the service.
Note: together with this response, a user-friendly page explaining the problem should be sent.
Caching-related headers that are sent along with this response should be taken care of, as a 503 status is often a temporary condition and responses shouldn't usually be cached.
So I can think of at least 3 possible issues:
- Your server is really overloaded, you can try checking
Response Data
tab of the View Results Tree listener - if you're lucky - you will the the aforementioned "user-friendly page explaining the problem" Your request is malformed and server is sending 503 response instead of 4xx which indicates client-side error. Double check what URL(s) you're trying to open by looking into
Request
tab of the View Results Tree listener and try to open it in the browser. If you're building the URL from parts (i.e. host, port, protocol, query string, etc.) - you might want to check if the values are correctly read from the CSV file using Debug SamplerI fail to see HTTP Header Manager in your Test Plan, some servers check the client Headers, for example User-Agent or Accept and may report an error if the required header is missing (i.e. indicating that the browser is not supported)
add a comment |
As per HTTP 503 status code description
The HyperText Transfer Protocol (HTTP) 503 Service Unavailable server error response code indicates that the server is not ready to handle the request.
Common causes are a server that is down for maintenance or that is overloaded. This response should be used for temporary conditions and the Retry-After HTTP header should, if possible, contain the estimated time for the recovery of the service.
Note: together with this response, a user-friendly page explaining the problem should be sent.
Caching-related headers that are sent along with this response should be taken care of, as a 503 status is often a temporary condition and responses shouldn't usually be cached.
So I can think of at least 3 possible issues:
- Your server is really overloaded, you can try checking
Response Data
tab of the View Results Tree listener - if you're lucky - you will the the aforementioned "user-friendly page explaining the problem" Your request is malformed and server is sending 503 response instead of 4xx which indicates client-side error. Double check what URL(s) you're trying to open by looking into
Request
tab of the View Results Tree listener and try to open it in the browser. If you're building the URL from parts (i.e. host, port, protocol, query string, etc.) - you might want to check if the values are correctly read from the CSV file using Debug SamplerI fail to see HTTP Header Manager in your Test Plan, some servers check the client Headers, for example User-Agent or Accept and may report an error if the required header is missing (i.e. indicating that the browser is not supported)
As per HTTP 503 status code description
The HyperText Transfer Protocol (HTTP) 503 Service Unavailable server error response code indicates that the server is not ready to handle the request.
Common causes are a server that is down for maintenance or that is overloaded. This response should be used for temporary conditions and the Retry-After HTTP header should, if possible, contain the estimated time for the recovery of the service.
Note: together with this response, a user-friendly page explaining the problem should be sent.
Caching-related headers that are sent along with this response should be taken care of, as a 503 status is often a temporary condition and responses shouldn't usually be cached.
So I can think of at least 3 possible issues:
- Your server is really overloaded, you can try checking
Response Data
tab of the View Results Tree listener - if you're lucky - you will the the aforementioned "user-friendly page explaining the problem" Your request is malformed and server is sending 503 response instead of 4xx which indicates client-side error. Double check what URL(s) you're trying to open by looking into
Request
tab of the View Results Tree listener and try to open it in the browser. If you're building the URL from parts (i.e. host, port, protocol, query string, etc.) - you might want to check if the values are correctly read from the CSV file using Debug SamplerI fail to see HTTP Header Manager in your Test Plan, some servers check the client Headers, for example User-Agent or Accept and may report an error if the required header is missing (i.e. indicating that the browser is not supported)
answered Jan 3 at 9:57
Dmitri TDmitri T
75k33765
75k33765
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- 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%2fstackoverflow.com%2fquestions%2f54019467%2fresponse-code-503-response-message-service-unavailable%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
1
What do server logs say?
– NEGR KITAEC
Jan 3 at 9:30
I am very new to Jmeter. I dont know where server log is ? can you help me with that /
– Durairaj s
Jan 3 at 9:32
1
I'm just grabbing my crystal ball and try to solve the mystery. Really, read the logs of your server. 503 means: "The server is currently unavailable (because it is overloaded or down for maintenance). Generally, this is a temporary state."
– maio290
Jan 3 at 9:32