PowerBI部署

下载介质

PowerBI官网下载地址(下载PBIdesktop、PBIreportserver、网关):

https://powerbi.microsoft.com/zh-cn/downloads/
https://powerbi.microsoft.com/zh-cn/report-server/

此外还需要安装webview2,官网下载地址:

https://developer.microsoft.com/zh-cn/microsoft-edge/webview2/

.NET 4.8可以自行手动安装。

安装报表服务器

参考官网指导手册:

https://learn.microsoft.com/zh-cn/power-bi/report-server/install-report-server#download-power-bi-report-server

首先安装SQLServer和SSMS,此处不赘述。

然后服务端安装.NET 4.8,

然后安装Power BI Report Server:
运行安装程序即可,授权需要购买(部分功能应该是需要pro许可)

安装完成后进入配置界面:

检查服务是否正常:

安装客户端

先安装网关:

客户端安装webview2:

安装desktop:

配环境变量:

配凭据:

后续通过网页页面可以进行数据源配置、文件夹等功能;
上传的文件经查看不在服务器上,是否在数据库中有待验证;

数据库一些重要的表:
[ReportServer].[dbo].[SecData]
[ReportServer].[dbo].[Catalog]
[ReportServer].[dbo].[CatalogItemExtendedContent]
[ReportServer].[dbo].[ConfigurationInfo]
...

连接其他种类数据库需要在客户端安装相应的驱动
如连接mysql需要安装MySQL Connector/NET

官方参考:

https://learn.microsoft.com/zh-cn/power-bi/fundamentals/desktop-what-is-desktop
https://learn.microsoft.com/zh-cn/power-bi/report-server/install-report-server#download-power-bi-report-server
https://learn.microsoft.com/zh-cn/power-bi/report-server/install-powerbi-desktop
https://learn.microsoft.com/zh-cn/power-bi/report-server/system-requirements#power-bi-reports-and-analysis-services-live-connections
https://learn.microsoft.com/zh-cn/sql/reporting-services/install-windows/configure-a-report-server-database-connection-ssrs-configuration-manager?view=sql-server-ver16

你可能感兴趣的:(PowerBI部署)