A family of Microsoft on-premises document management and storage systems.
Hello @Keith Vollero
While researching, I came across a very similar issue and a detailed article that explains a common cause: cluster security mismatch leading to the “Failed to connect to hosts in the cluster” error: Distributed Cache problems after applying January 2023 CUNote: This information is provided as a convenience to you. These sites are not controlled by Microsoft, and Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please ensure that you fully understand the risks before using any suggestions from the above link.
The article recommends checking/reconfiguring the cluster security settings (or applying a newer Cumulative Update if you're on an older build). Since your farm is on SharePoint Server SE, you may also want to try the standard SE repair commands first:
Remove-SPDistributedCacheServiceInstance
Add-SPDistributedCacheServiceInstance
If Remove-SPDistributedCacheServiceInstance fails, use the manual cleanup script:
$instanceName = "SPDistributedCacheService Name=SPCache"
$serviceInstance = Get-SPServiceInstance | Where-Object { ($_.service.ToString()) -eq $instanceName -and ($_.server.Name) -eq $env:COMPUTERNAME }
if ($serviceInstance -ne $null) { $serviceInstance.Delete() }
# Also clean the AppFabric entry (sometimes needed in SE)
$instanceName = "SPDistributedCacheService Name=AppFabricCachingService"
$serviceInstance = Get-SPServiceInstance | Where-Object { ($_.service.ToString()) -eq $instanceName -and ($_.server.Name) -eq $env:COMPUTERNAME }
if ($serviceInstance -ne $null) { $serviceInstance.Delete() }
# Now re-add the service
Add-SPDistributedCacheServiceInstance
After running the script, go to Central Administration > Application Management > Manage Services on Server and confirm that the Distributed Cache service status shows Started then test the cache health: Get-SPCacheClusterHealth
Hope this helps, please give it a try and let me know the result
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.