SQL Server Reporting Services: The feature: "Scale-out deployment" is not supported in this edition of Reporting Services.
When restoring a SQL Server Reporting Services database to a new server, the service didn’t want to start. Instead I got the following error message:
“The feature: "Scale-out deployment" is not supported in this edition of Reporting Services.”
When I was checking the report server configuration manager, I found out that in the Scale Out SSRS deployment both the new server and old server were listed. To clean up the scale out deployment configuration and remove the old server I had to do the following:
- Open a command prompt.
- Browse to the following path C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\
- List the report servers found in the database type using the following command:
- RSKeyMgmt –l
- A list of servers with their GUID is shown. Note the GUID of the server that you want to remove.
- Remove the instance by using the following command:
- RSKeyMgmt -r GUIDoftheSSRSserverTobeRemoved
- Say yes if you are asked for confirmation.
That’s it…