Uma Mageshwari
Uma Mageshwari

Reputation: 11

IIS Server Service Unavailable 503 MVC Application

I tried to deployee my application in one server (windows 7 ultimate 32 bit) and share the application via network to access in other systems.

  1. I installed IIS Server via windows feature (IIS and Windows Process Activation Service)
  2. Open IIS Server and right click the Sites Add new web site.
  3. I m given site name as Raja and Select Application pool (ASP.NET v4.0) then choose physical path as D:\Uma (Root Folder).
  4. Assign IP address as 192.168.1.249 then port number 81 and hostname as localhost and click ok.
  5. then i have added all files in D:\uma folder with webconfig file.

(this web site is running perfectly in cloud server window Server 2008 i have used same webconfig file)

My server, web site and application pool all are running but when i browse it show Service Unavailable Http Error 503

Shall i missed any steps please help me out last two days i have tried. thanks in advance.

Upvotes: 0

Views: 2022

Answers (1)

Roman Svitukha
Roman Svitukha

Reputation: 1402

Here is a script to fix that:

start-service w3svc
remove-item -recurse -force C:\inetpub\temp\appPools\*
stop-service -force WAS

Probably your windows was updated recently.

Upvotes: 0

Related Questions