Forum Discussion
Ryan Taylor
Nov 10, 2017Copper Contributor
App Management Service Application stuck starting
Hello,
I need some help with setting up a service application, the one in question is the App Management Service Application. It is currently sat with a status of 'Starting' (see below)Status stuck on Starting
I have tried the following steps:
- Restarted IIS
- Restarted Timer Service
- Tried unprovisioning then provisioning the service via powershell
- Deleting the service application and recreating it (this times out, so I have to then use stsadm command to remove it through powershell)
- Rebooting the server
All the commands are done using the Central Administration admin account, also tried with the Farm account and this makes no difference.
Some guidance would be great!
Regards
Ryan
- Anand BhojanCopper Contributor
$srvc = Get-SPServiceInstance -Identity [paste in the GUID for the service]
$srvc.Unprovision()$srvc = Get-SPServiceInstance -Identity [paste in the GUID for the service]
$srvc.provision()
$srvc.update()
iisreset /noforce
this shoudl work