Dealing with SSRS Setup RPC Exception 0x800706B3: error hit when generating Database script, Learn how to troubleshoot and resolve the RPC error in SSRS setup.
Check whether port 8082 already been used or not. If yes either free up the port 8082 and restart your SSRS or trying to use other port like 8080.
{
"Config":
{
"BI_SERVER": "false",
"managementUrl": "http://localhost:8082",
"rsConfigFilePath": "..\\ReportServer\\rsreportserver.config",
"SecureConnectionLevel": "0"
},
"ManagementProcess": {
"name": "Management Service",
"path": "Management\\RSManagement.exe",
"parameters": "",
"Config": {
"Dumper.flags": "SendToWatson, AllThreads, AllMemory",
"Dumper.preventIfContains": "Microsoft.BIServer.HostingEnvironment.Exceptions.TrustedProcessTokenExpiredException",
"listenerUrl": "http://+:8082/",
"restartOnChangesTo": "Dumper.flags,Dumper.preventIfContains,listenerUrl"
}
}
After – Partial code.
{
"Config":
{
"BI_SERVER": "false",
"managementUrl": "http://localhost:8080",
"rsConfigFilePath": "..\\ReportServer\\rsreportserver.config",
"SecureConnectionLevel": "0"
},
"ManagementProcess": {
"name": "Management Service",
"path": "Management\\RSManagement.exe",
"parameters": "",
"Config": {
"Dumper.flags": "SendToWatson, AllThreads, AllMemory",
"Dumper.preventIfContains": "Microsoft.BIServer.HostingEnvironment.Exceptions.TrustedProcessTokenExpiredException",
"listenerUrl": "http://+:8080/",
"restartOnChangesTo": "Dumper.flags,Dumper.preventIfContains,listenerUrl"
}
}
netsh http add urlacl url=http://+:8080/ user="NT SERVICE\SQLServerReportingServices
After run restart your SSRS.