You get “cacheHostInfo is null” when try to start Distributed Cache Service on Sharepoint 2013

Közzététel dátuma: 2014.01.15. 7:05:42

You can get the list of the distributed cache service instances in the farm:

Get-SPServiceInstance | where {$_.TypeName -eq "Distributed Cache"}

If you have only one server you can delete and recreate the service:

$dc = Get-SPServiceInstance | where {$_.TypeName -eq "Distributed Cache"}

$dc[0].Delete()

Add-SPDistributedCacheServiceInstance