i have a web site for download mobile files and there many users in my web site.
sometimes i have the error below :
HTTP Error 503 - Service is unavailable

1-so why this error happens and what is that mean?

2-as i know Apache free up itself when it's overloaded, but what about iis?

how can i put some limitations in my server (i have remote access to my server) for prevent this error happening?

a-is limitation of download's speed efficient for prevent that error's occur?
how can i do that? is squid useful for this job or i can do that with another iis extension.

b.is limitation of download's Bandwidth efficient for prevent that error's occur?
how can i do that (with iis or another extension)?

in right side of iis -> configure area -> i found some limits.
what do those limits mean and can i use them for keep my server alive all the time?

link|improve this question

1  
It is the number of concurrent requests it is having problems with. This could be caused by anything from bad code, to a crappy server. Or it might just be that you have good code and a fast server but your site is just too popular. It is very difficult to advise on how to fix with the given info other than to say upgrade your server . However i doubt very much that it has anything to do with the speed or bandwidth of any given connection. – Ben Robinson Nov 27 '11 at 21:02
Check your Windows error log. 503 is a generic error that basically means "something went wrong whilst trying to spawn a handler to serve your request". The error log should give you the specific reason. – Polynomial Nov 27 '11 at 21:06
@Polynomial 503 usually means that the server is too busy or is down for maintenance, in this case it means too busy. – Ben Robinson Nov 27 '11 at 21:08
@BenRobinson - Yes, but "too busy" isn't defined as a specific load metric. It might be that the server's memory, CPU or IO load is very high. It may also be that the server's halfopen (SYN_WAIT) socket limit or system handle limit has been hit. There's lots of reasons for it to say there's "too much load", but the specific reason is what's important. – Polynomial Nov 27 '11 at 21:12
If you read my first comment i make that exact point i was just saying that "too busy" is more specific than "something went wrong" the code throwing an exception is "something went wrong" but not "too busy" – Ben Robinson Nov 27 '11 at 21:14
feedback

closed as off topic by John Saunders, J.Kommer, Ben Robinson, competent_tech, ManseUK Nov 27 '11 at 21:11

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.