5

我最近从 SSRS Report Server 2008 升级到 Power BI Report Server 2017。我还设置了一个别名 URL 链接来访问服务器。

通过电子邮件订阅从新服务器发送报告时,可以选择将链接连同报告服务器一起发送。使用新的报表服务器时,链接不使用报表服务器别名链接到服务器。它改为使用 SSRS 服务器本身的机器名称。

示例: http://machinename/reports/reportname 代替 : http ://reportserveralias.example.com/reports/reportname

我确实在 rsreportserver.config 文件中找到了正确描述 URLRoot 的 microsft 链接。这是一个指向 Microsoft 网站的链接,该链接描述了该文件的功能。

https://docs.microsoft.com/en-us/sql/reporting-services/report-server/rsreportserver-config-configuration-file?view=sql-server-2017

我尝试编辑它,但无济于事。之后我还尝试重新启动报告服务,但没有成功。有人可以帮我吗?

谢谢!

4

1 回答 1

5

您确实必须在 RSReportServer.config 文件中配置 UrlRoot,但它不能指向 Web Portal 而是指向 Web Service。在大多数情况下,虚拟目录被命名为“reportserver”(在Reporting Services 配置管理器中的Webservice URL下验证这一点)。

RSReportServer.config 文件中的配置选项位于

<Configuration>
    ...
    <Service>
        ...

在您的场景中,它应该如下所示:

<UrlRoot>http://reportserveralias.example.com/reportserver</UrlRoot>

作为附加建议,将 web 服务和 webportal URL 绑定到 SSL 证书(为 reportserveralias.example.com 或 *.example.com 颁发)并https改为使用。

于 2018-09-13T19:50:19.667 回答