Domanda

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?

È stato utile?

Soluzione

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
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a sharepoint.stackexchange
scroll top