문제

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