'Reporting service configuration manager unable to start currect report server - SSRS
SQL Server lunchpad and SQL Server reporting service not getting started.
"Windows could not start the SQL Server reporting service on local computer"
Error 1053: The service did not respond to the start or control request in a timely fashion
When I'm starting from reporting service configuration manager end. I'm getting below error.
System.InvalidOperationException: Cannot start service SQLServerReportingServices on computer 'Name'.
--> System.ComponentModel.Win32Exception: The service did not respond to the start or control request in a timely fashion
--- End of inner exception stack trace --- at System.ServiceProcess.ServiceController.Start(String[] args)
at ReportServicesConfigUI.Panels.ConfigurationPanelWithErrors.StartOrStopServiceTask(Boolean start, String serviceName)
Refer to the below link, however, its not resolving the issue.
The request failed or the service did not respond in a timely fashion?
Note: I can run the reporting service configuration manager as admin
Any clue how to resolve this?
Solution 1:[1]
services.msc > SQL Server Reporting Service path to executable is : "C:\Program Files\Microsoft SQL Server Reporting Services\SSRS\RSHostingService\RSHostingService.exe"
then I execute RSHostingService.exe on PowerShell(Run as administrator)
the error :
**Exception occurred while parsing config file** at [C:\Program Files\Microsoft SQL Server Reporting Services\SSRS\RSHostingService\config.json]System.Xml.XmlException: '.', hexadecimal value 0x00, is an invalid character. Line 1, position 1.
Returned.
For me, web.config File in "C:\Program Files\Microsoft SQL Server Reporting Services\SSRS\ReportServer" was dammaged.
I replaced it with another one from another system and my problem solved.
Solution 2:[2]
I had the same issue
Uninstall SQL Reporting Service
Stop Stop SQL Server Reporting Service (you can find it there cmd==>services.exe)
Drop ReportService and ReportServieTmp with SSMS
Remove this directory (including all files) C:\Program Files\Microsoft SQL Server Reporting Services
It isn't the best solution, but it works.
Solution 3:[3]
I faced similar issue, I restarted my system as suggested by many here. Then after failed attempts I selected Network services(which was not default) and clicked apply. After few minutes, it connected and I selected back Virtual service account and it connected.
Solution 4:[4]
Download https://raw.githubusercontent.com/alijamal14/PublicFiles/master/web.config
and Replace web.config
file here:
"C:\Program Files\Microsoft SQL Server Reporting Services\SSRS\ReportServer"
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | |
Solution 2 | Dharman |
Solution 3 | Dharman |
Solution 4 | Ali Jamal |