Sharepoint 2013 Distributed Cache cacheHostInfo null
Today i had one problem while start the Distributed Cache in SharePoint 2013 i was getting the below error
cacheHostInfo is null
After that i found the below PowerShell cmdlets to resolve this issue
I ran the below cmdlet to find the GUID in the ID section of the Distributed Cache Service that is causing an issue
Get-SPServiceInstance
after that i ran the below cmdlet
$s = get-spserviceinstance f40a881c-buc2-4e8b-a846-172fd835e785
$s.delete()
before do this make sure that "AppFabric Caching Service" service should be disabled
cacheHostInfo is null
After that i found the below PowerShell cmdlets to resolve this issue
I ran the below cmdlet to find the GUID in the ID section of the Distributed Cache Service that is causing an issue
Get-SPServiceInstance
after that i ran the below cmdlet
$s = get-spserviceinstance f40a881c-buc2-4e8b-a846-172fd835e785
$s.delete()
before do this make sure that "AppFabric Caching Service" service should be disabled
Comments
Post a Comment