How to Resolve 503 Error?

Maybe some of you ever experienced with this problem

Actually, there may be 4 reasons for this error and we will also advise how to fix this problem on this article. So, keep reading!

Reasons 503 Error

1. .NET CLR Version & Managed Pipeline Mode

Once your .NET CLR version is not set correct, your website couldn’t work properly. Some web-hosting providers only provide 1 dedicated application pool for each hosting account in a shared Windows server. Thus, when you run more than 1 website with different .NET framework hosted with one account, they will get conflicted with each other.
For example, you can successfully run a website named A.com when you use .NET 2.0. However, when you try running another website named B.com with .NET 4.0, it’s very likely for you to run into 503 error at A.com. This is because the operation of B.com updated the shared application pool to .NET CLR Version 4.0.
The same logic goes for Managed Pipeline Mode, which has 2 types: Integrated and Classic.
By using local or remote IIS management, you are able to open your IIS Manager and find application pool. Then click Advance Settings. Here is what you can see as it shows:

2. Enable 32-Bit Applications

This is another possible reason for Error 503, which can be found in the above placed screenshots. Here are the 3 most common reasons for this Error 503 caused by Application Pool Bit Mode setting.
  • The Classic ASP site can only work in an environment with 32-bit. You’re likely to confront this error if you: run a .NET site in an environment with 64-bit and it is hosted with a Classic ASP site or run a site with 64-bit set default by us.
  • Your .NET site is specifically compiled with 32-bit or 64-bit environment, but it is hosted with another mode.
  • Your .NET site requires library that run with 32-bit or 64-bit environment, but it doesn’t operate that way.

3. Application_Error

A code bug may cause a site’s application pool crashed, thus resulting to Error 503. If you can change the source code, you’d better add the following logging function to Application_Error of Global.asax.cs. As thus, you’re able to find some clues in the log file if you confront this issue next time. Read the following code snippet.

4. The Limitation of Your Web Host

If 503 Error is not led by the above 3 reasons, then it may be the limitation we set that evokes. Specifically speaking, there are 2 reasons: CPU limit and Private Memory Limit. Most hosting providers have set limitation of CPU and private memory, though they may not state the fact in public. The aim for that is to avoid the server being overused by one user.
If that is the case, you can contact our technical support team for the 2 figures, and get to know the right expectation. If your site constantly occupies more than 500 MB memory or 10 percent of local server CPU, then you should optimize your codebase.

CPU Limit

The latest IIS versions permit web-hosting providers to configure the CPU limit of an application pool so that the worker process of your website is able to use a certain amount of CPU at maximum. When your site comes with a large number of traffic or confronts a complicated situation at one time, the limit will be exceeded and your website worker process will be disabled. Before the worker process is able to restarted, you may run into this error.
You are able to find CPU limit for an application pool in your local Internet Information Services as it shows below.
The above screenshot shows that once the occupation of your server CPU is up to 15 percent, the worker process of your website is disabled and will be restarted in 5 minutes. During this period, you will experience the Error 503.

Private Memory Limit

Besides CPU limit, the private memory limit may also cause the same problem as you can see in the screenshot below. It indicates that when your site uses up more than the limited maximum memory, the worker process of your site will be recycled automatically. As thus, there is an Error 503 temporarily before it is restarted.

Summary

The above 4 factors are the main reasons that lead to Service Unavailable 503 Error. If you acquire them and you can quickly find the solution to this issue. If you need ASP.NET hosting solution with affordable pricing, please visit our site at http://www.hostforlifeasp.net.
Steve
Latest posts by Steve (see all)