Some services in SharePoint cannot be restarted through the GUI. In the instance that I recently needed to do, it was the ReportingService. So to accomplish this, I needed to use PowerShell.
- Open SharePoint
Management Shell as admin
- Get the GUID of the
service by doing:
- Get-SPServiceInstance
- Make sure you note the GUID of the service. Copy it to the clipboard.
- Stop the service by
doing this
- Stop-SPServiceInstance -identity
<Paste Your GUID Here>
- Wait a moment, and then
restart the service by doing this
- Start-SPServiceInstance -identity
<Paste Your GUID Here>
- Check to make sure the
service is running by doing this
- Get-SPServiceInstance -identity <Paste Your GUID Here>
Then check to make sure
the service is running by going into SharePoint and doing something that uses the service. If it's the Reporting Service as it was in my case, run a report.