2013-03-20 2 views
0

새롭거나 기존의 하늘색 응용 프로그램을 실행하려고하면 IISConfigurator가 충돌하고 역할 시작에 예상보다 오래 걸리는 알림이 표시됩니다. Windows 8 VS2012에서 IIS Express 8 (하늘 프로젝트 설정에서 IIS Express를 사용하도록 지정)을 사용하고 있습니다.Dev Fabric에서 Azure 앱을 실행할 때 IISConfigurator.exe가 충돌 함

나는 비슷한 질문을 here으로 보았지만 포스터에는 로그 파일을 기반으로하는 다른 문제가있는 것으로 보입니다. 다음

IISConfiguratorLogs 파일에서, 그리고 얼어있는 서비스임을 표시하는 것 같다

IISConfigurator Information: 0 : [00008536:00000001, 2013/03/20 16:54:20.352] Started iisconfigurator with args /start 
IISConfigurator Information: 0 : [00008536:00000001, 2013/03/20 16:54:20.362] StartForeground selected. Check if an instance is already running 
IISConfigurator Information: 0 : [00008536:00000001, 2013/03/20 16:54:20.388] Starting service WAS 
IISConfigurator Information: 0 : [00008536:00000001, 2013/03/20 16:54:50.716] Timeout exception System.ServiceProcess.TimeoutException: Time out has expired and the operation has not been completed. 
at System.ServiceProcess.ServiceController.WaitForStatus(ServiceControllerStatus desiredStatus, TimeSpan timeout) 
at Microsoft.WindowsAzure.ServiceRuntime.IISConfigurator.WebServiceManager.StartService(String name) 
IISConfigurator Information: 0 : [00008536:00000001, 2013/03/20 16:54:50.718] Starting service w3svc 
IISConfigurator Information: 0 : [00008536:00000001, 2013/03/20 16:54:51.809] Unhandled exception: IsTerminating 'True', Message 'System.InvalidOperationException: Cannot start service w3svc on computer '.'. ---> System.ComponentModel.Win32Exception: The dependency service or group failed to start 
--- End of inner exception stack trace --- 
at System.ServiceProcess.ServiceController.Start(String[] args) 
at Microsoft.WindowsAzure.ServiceRuntime.IISConfigurator.WebServiceManager.StartService(String name) 
at System.Linq.Enumerable.WhereSelectListIterator`2.MoveNext() 
at System.Linq.Enumerable.Aggregate[TSource](IEnumerable`1 source, Func`3 func) 
at Microsoft.WindowsAzure.ServiceRuntime.IISConfigurator.WebServiceManager.StartServices() 
at Microsoft.WindowsAzure.ServiceRuntime.IISConfigurator.IISConfigurator.Initialize() 
at Microsoft.WindowsAzure.ServiceRuntime.IISConfigurator.WCFServiceHost.Open() 
at Microsoft.WindowsAzure.ServiceRuntime.IISConfigurator.Program.StartForgroundProcess() 
at Microsoft.WindowsAzure.ServiceRuntime.IISConfigurator.Program.DoActions(String[] args) 
at Microsoft.WindowsAzure.ServiceRuntime.IISConfigurator.Program.Main(String[] args)' 

나는 나의 다음 단계는해야한다 무엇에 어떤 조언을 부탁드립니다. 미리 감사드립니다!

답변

0

IIS를 사용하는 컴퓨터에서 손상된 부분이 있으며 실제로 Azure와 관련이 없습니다. 수동으로 W3SVC 또는 WAS 서비스를 시작하려고하면 비슷한 오류가 발생합니다. 구성 파일 (machine.config, applicationhost.config 등) 또는 파일 시스템 문제와 같은 다른 파일 중 하나 일 수 있습니다.

일부 문제 해결 기법 및 가능한 해결 방법은 http://www.hanselman.com/blog/FixedWindowsProcessActivationServiceWASIsStoppingBecauseItEncounteredAnError.aspx을 확인하십시오.

+0

이 기사를 읽은 후 IIS를 다시 설치하려고했습니다. 이것은 문제를 해결 한 것 같습니다. 감사! – Will

관련 문제