如何在 sql2008 中更改 SQL Server Reporting Services 日志文件的位置?

如何在 sql2008 中更改 SQL Server Reporting Services 日志文件的位置?

我尝试使用这些步骤来更改 SQL Server 日志文件的位置,但是它不起作用,因为我在两个 Web 配置文件中找不到 RTrace。

要更改 Reporting Services 日志文件的位置,您需要修改三个文件。这些文件是:

  • c:\Program Files\Microsoft SQL Server\Reporting Services\ReportManager\web.config

  • c:\Program Files\Microsoft SQL Server\Reporting Services\ReportServer\web.config

  • c:\Program Files\Microsoft SQL Server\Reporting Services\ReportServer\Bin\ReportingServicesService.exe.config

在上述所有文件的 RSTrace 下添加以下标签:

<add name="Directory" value="c:\directorypath" />

非常感谢您的帮助。

答案1

我不确定您是否可以修改该位置。此文件位于\Microsoft SQL 服务器\\Reporting Services\LogFile

跟踪级别通过 DefaultTraceSwitch 和 RSTrace 设置指定。所有跟踪级别设置都存储在 ReportingServicesrService.exe.config 文件中。

配置文件位于文件夹路径中\Program Files\Microsoft SQL Server\MSRS10.\Reporting Services\ReportServer\bin 文件名属性仅影响文件前缀

更多信息请点击这里: http://msdn.microsoft.com/en-us/library/ms156500(v=SQL.100).aspx

相关内容