IISExpress日志文件位置


109

IISExpress开箱即用地将日志和配置数据写入到预定位置。

该目录是存储在用户的Documents目录中的“ IISExpress”目录。

在目录中存储以下文件夹文件。

  • 设定档
  • 日志
  • TraceLogFiles

我的主目录的位置在网络共享上,由组策略确定

当前,我们遇到的情况是Visual Studio在停止使用IIS Express调试Silverlight应用程序时锁定。

我一直在寻找为IISExpress更改日志和配置数据的位置,以查看是否可以解决Visual Studio锁定的问题。是否可以更改日志和配置文件的默认位置?


我在Windows 10中寻找的日志在这里:C:\ WINDOWS \ temp \ PHP71ForIISExpress_errors.log
Rob Sedgwick

Answers:


136

1。默认情况下,applicationhost.config文件定义以下两个日志文件位置。此处IIS_USER_HOME将扩展为%userprofile%\documents\IISExpress\

<siteDefaults>
<logFile logFormat="W3C" directory="%IIS_USER_HOME%\Logs" />
<traceFailedRequestsLogging directory="%IIS_USER_HOME%\TraceLogFiles" enabled="true" />
</siteDefaults>

您可以更新以上目录路径以更改日志文件位置。

2。如果您从命令行运行IIS Express,则可以使用“ / config”开关提供您选择的配置文件。以下链接可能会帮助您http://learn.iis.net/page.aspx/870/running-iis-express-from-the-command-line/


14
如果您从Visual Studio运行IIS Express,则从$(solutionDir)\.vs\config\applicationhost.config(从此答案引用)加载.config文件
sonyisda1

3
VS2019对此进行了更改,默认情况下在.vs \ <app> \ config \ applicationhost.config文件中为禁用。路径是现在%APPDATA%\微软\ IISExpressLogs”为W3C日志和“%APPDATA%\微软”为tracelogs。
普利文纳亚克

21

http://www.iis.net/configreference/system.applicationhost/sites/sitedefaults

<configuration>
    <system.applicationHost>
       <sites>
          <siteDefaults>
             <logFile 
                logFormat="W3C"
                directory="%SystemDrive%\inetpub\logs\LogFiles"
                enabled="true" 
                />
             <traceFailedRequestsLogging 
                enabled="true"
                directory="%SystemDrive%\inetpub\logs\FailedReqLogFiles"
                maxLogFiles="20" 
                />
             <limits connectionTimeout="00:01:00" />
             <ftpServer serverAutoStart="true" />
             <bindings>
                <binding 
                    protocol="http" 
                    bindingInformation="127.0.0.1:8080:" 
                    />
             </bindings>
          </siteDefaults>
       </sites>
    </system.applicationHost>
</configuration>

我发现web.config文档太乱了。因此,最好提供完整的父历史记录而不是浮动片段,以使读者自然知道它的去向。


2
是的,+ 1可提供完整的父级历史记录。否则,甚至必须查阅更多相关文档。谢谢乔治!
曼弗雷德

12

默认情况下,它将位于:

C:\用户\ USER_NAME \文档\ IISExpress \日志\


但是,如果其他人更改了默认设置,该怎么办?我该如何将其改回来?
Fandango68年

4
@ Fandango68这是一个新问题,而不是评论。

那就是说它在哪里,而不是如何更改(每个问题)
Rowland Shaw
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.