500 Internal Server Error sharepoint2013 SSRS

While trying to install SharePoint Server Reporting Services got into error “SSRS Errors, Gotta catch ‘em all!“. The error is basically getting a “The remote server returned an error: (500) Internal Server Error” whenever you click on either “System Settings” or “Manage Jobs

manage reporting services setting

manage reporting services setting

The error:

something went wrong error

something went wrong error

This doesn’t tell us much, however when we go into Event Viewer we find two event IDs that are related to this and they both have similar messages.

event viewer error message

event viewer error message

Event ID 6398

event viewer error message2

event viewer error message2

The thing we find in common in both those errors is “Could not find permission set named ‘ASP.Net’”. Here are the steps. What you probably already done to get to the error:

  • Install Reporting Servers + Addin
  • Run the PowerShell commands (Install-SPRSService & Install-SPRSServiceProxy & get-spserviceinstance -all |where {$_.TypeName -like “SQL Server Reporting*”} | Start-SPServiceInstance)
  • Create the SSRS Service Application.

What I did to fix it:

  • Delete the SSRS Service Application as well as Databases.
  • Run the following PowerShell command: “get-spserviceinstance -all |where {$_.TypeName -like “SQL Server Reporting*”} | Stop-SPServiceInstance
  • Run the following PowerShell command: “Install-SPRSService –Uninstall
  • Run the following PowerShell command: “Install-SPRSServiceProxy –Uninstall
  • Go to Control Panel, Select SQL Server and then click REPAIR. Do a full repair of the SSRS + Addin feature (you shouldn’t have anything else installed on the server anyway, so just select all)
  • Run the PowerShell commands (Install-SPRSService & Install-SPRSServiceProxy & get-spserviceinstance -all |where {$_.TypeName -like “SQL Server Reporting*”} | Start-SPServiceInstance)
  • Create the SSRS Service Application.

Now everything should work! Drop a comment if this helped!



Categories: Error Code, EventID

Tags: , , , , ,

Discover more from SharePointTechnicalSupport

Subscribe now to keep reading and get access to the full archive.

Continue reading