The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I am trying to deploy the report file (PBIX) file on to Power BI report server through DevOps on Linux agent. I am getting the responce code 401 (Unauthorized), while it is failing to create a session. Can anyone suggest what could be the issue.
Now I am unable to publish Larger file (800 MB )file.. I had verified the MaxFileSize on PBIRS, it is 2000.
. Getting below logs
The 401 error means you have not authenticated correctly to the report server. PBIRS usually uses windows auth, I'm not sure how you would do this from a linux agent.
$password = ConvertTo-SecureString -String "$(DeployerPassword)" -AsPlainText -Force
$Cred = New-Object System.Management.Automation.PSCredential ("$(DeployerUsername)", $password)
$session = New-RsRestSession -ReportPortalUri $(ReportServerURI) -Credential $Cred
We can use the above solution to authenticate with the PBIRS through Linux Agent server
User | Count |
---|---|
3 | |
2 | |
2 | |
2 | |
1 |
User | Count |
---|---|
7 | |
4 | |
4 | |
3 | |
2 |