Problems with MSDeploy (WMSVC 500 error)

Having some problems with MSDeploy on a Windows Server 2008 server, the internal service throws a 500 error without putting anything in the server’s event logs.

I am trying to set up automatic deployment using MSBuild / TeamCity / MSDeploy, and this is basically the current breakpoint. Has anyone encountered this problem before?

Thanks Ed

+3
source share
1 answer

To find out why you are getting this error, you should enable logging.

First enable the Failed Request Tracing feature for the web management service. You can see how to do this by referring to the “Optional: Set Up Tracing” section of this article:

http://learn.iis.net/page.aspx/984/configure-web-deploy/

"frebs" :

C:\inetpub\logs\wmsvc\TracingLogFiles\W3SVC1

frXXXXXX.xml IE, freb.xsl .

freb.xsl, , .

-:

http://technet.microsoft.com/en-us/library/ff729437 (WS.10).aspx

:

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\IIS Extensions\MSDeploy\1]
"EnabledTraceLevel"=dword:00000002
"EnabledTraceSources"=dword:000001ff

/ , .

:

%WINDIR%\ServiceProfiles\LocalService\AppData\Local\Temp\WMSvc.log

+4

Source: https://habr.com/ru/post/1790790/


All Articles