Hi @Tharun Balaji Jothi Subramaniam,
Thanks for the reaching out SQL forum.
Thank you for sharing the detailed environment information and error trace. The issue you’re facing is commonly related to inconsistent or missing machineKey settings across SSRS configuration files, which prevents proper validation of authentication cookies after Azure AD login.
1.Set a consistent machineKey across all SSRS config files:
Add the same <machineKey> element in:
C:\Program Files\Microsoft SQL Server Reporting Services\SSRS\Portal\web.config
rsReportServer.config
rsPortal.config
Example:
XML<machineKey validationKey="YOUR-VALIDATION-KEY" decryptionKey="YOUR- DECRYPTION-KEY" validation="AES" decryption="AES" />Show more lines
Generate keys using PowerShell:
PowerShell[System.Web.Security.MachineKeySection]::GenerateKeys("AES", 64)Show more lines
Ensure identical keys in all files.
2.Restart SSRS service after updating keys.
Check OIDC configuration:
Verify CallbackPath, Authority, ClientId, and Redirect URI match your Azure AD app registration.
Ensure SameSite and HTTPS settings are correct (Chromium browsers enforce strict rules).
3.Clear old cookies:
Delete browser cookies for the SSRS site after applying changes.
Hope this helps.
Thanks,
Lakshmi.