简体   繁体   中英

HOW TO FIX: Service Unavailable in IIS 6 windows XP?

I'm trying to fix the issue Service Unavailable in IIS 6 with Windows XP x64

The defaults applications are not working too and my application neather.

So when i browse my application, the message displaed in the browser is "Service Unavailable"

I already restart the iis service I already add a new application pool It seems Network Service is added by default.

It is a .NET application framework v1.1 I'm trying to make it run locally in a VM Virtualbox

What can i do to fix this? thanks

在此处输入图片说明

Finally i could find the error by myself following these steps:

http://www.vbforums.com/showthread.php?348106-RESOLVED-HTTP-1-1-503-Service-Unavailable

https://support.microsoft.com/en-us/help/894435/how-to-switch-between-the-32-bit-versions-of-asp-net-1-1-and-the-64-bi

ASP.NET 1.1, 32-bit version To run the 32-bit version of ASP.NET 1.1, follow these steps: 1. Click Start, click Run, type cmd, and then click OK.

  1. Type the following command to enable the 32-bit mode: cscript %SYSTEMDRIVE%\\inetpub\\adminscripts\\adsutil.vbs SET W3SVC/AppPools/Enable32bitAppOnWin64 1

  2. Type the following command to install the version of ASP.NET 1.1 and to install the script maps at the IIS root and under: %SYSTEMROOT%\\Microsoft.NET\\Framework\\v1.1.4322\\aspnet_regiis.exe -i

  3. Make sure that the status of ASP.NET version 1.1.4322 is set to Allowed in the Web service extension list in Internet Information Services Manager.

For beginners.. %SYSTEMROOT% is the Windows directory... in my case C:WINDOWS

Now this initially did nothing for me... so i navigated to the link in windows explorer, found adsutil.vbs and double clicked. It then asked me if i wanted to enable cscript (or something like that - can't remember cos i clicked too fast). Once i double clicked a second time all went well.

My Visual Studio was working again

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM