質問

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?

役に立ちましたか?

解決

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
ライセンス: CC-BY-SA帰属
所属していません sharepoint.stackexchange
scroll top