I'm getting Error “Server Application Unavailable” in IIS
💻 coding

I'm getting Error “Server Application Unavailable” in IIS

1 min read 186 words
1 min read
ShareWhatsAppPost on X
  • 1The 'Server Application Unavailable' error indicates that the web application is currently inaccessible on the IIS server.
  • 2Review the application event log to identify the specific cause of the error, such as issues with the App-Domain creation.
  • 3To resolve the issue, recreate the website and application pool, and ensure ASP.NET is properly installed on the server.

AI-generated summary · May not capture all nuances

Key Insight
AskGif

"The 'Server Application Unavailable' error indicates that the web application is currently inaccessible on the IIS server."

I'm getting Error “Server Application Unavailable” in IIS

The web service is throwing the following error when I browse from IIS:

Server Application Unavailable

The web application you are attempting to access on this web server is currently unavailable. Please hit the "Refresh" button in your web browser to retry your request.

Administrator Note:

An error message detailing the cause of this specific request failure can be found in the application event log of the web server. 
Please review this log entry to discover what caused this error to occur.

In the event viewer, I am getting the following message:

Failed to execute request because the App-Domain could not be created. Error: 0x80131509 For more information, see Help and Support Center at http://go.microsoft.com/fwlink events.asp.

I'm not able the understand the problem actually is and how to resolve this. please help me.

Solution:

There seems to be a problem with your IIS installation, specifically, the Application Pool associated with your website. This could be because ASP.NET is not installed properly.

Please try the following:

1. Remove your website and application pool and recreate them

2. Install ASP.NET - run this command as an Administrator.:

%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe–i 

Enjoyed this article?

Share it with someone who'd find it useful.

ShareWhatsAppPost on X

AskGif

Published on 6 November 2018 · 1 min read · 186 words

Part of AskGif Blog · coding

You might also like

I'm getting Error “Server Application Unavailable” in IIS | AskGif Blog