Question

I used Farm Configuration wizard which starts the State Service Application, the State Service Application started a few minutes, then it stopped automatically. And it has a error

"Internet Explorer cannot display the webpage".

Why State Service Application stopped automatically?

Était-ce utile?

La solution

You can delete the existing service and create a new one using PowerShell

$serviceApp = New-SPStateServiceApplication -Name "State Service Application"
New-SPStateServiceDatabase -Name "SharePoint_Service_State" -ServiceApplication $serviceApp
New-SPStateServiceApplicationProxy -Name "State Service Application Proxy" -ServiceApplication $serviceApp -DefaultProxyGroup

Once this is done, you can go to Manage Service Applications and check the status

Also you can check it using

$MyStateService = Get-SPStateServiceApplication
$MyStateService.status
Licencié sous: CC-BY-SA avec attribution
Non affilié à sharepoint.stackexchange
scroll top