IISExpress将日志和配置数据写入预先确定的开箱即用位置。
该目录是存储在用户的Documents目录中的“IISExpress”目录。
在目录中存储下面的以下文件夹文件。
我的主目录的位置在网络共享上,由组策略
决定目前,我们遇到使用IIS Express停止调试Silverlight应用程序时visual studio锁定的情况。
我打算更改日志的位置。 IISExpress的配置数据,看看这是否解决了visual studio锁定的问题。是否可以更改log&的默认位置?配置文件?
答案 0 :(得分:119)
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/
答案 1 :(得分:18)
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 :(得分:8)
默认情况下,它位于:
C:\ Users \ user_name \ Documents \ IISExpress \ Logs \
答案 3 :(得分:0)
如果使用方便的USERPROFILE
环境变量,则将写入日志的默认文件夹:
%USERPROFILE%\Documents\IISExpress\Logs\<application_name>