【问题标题】:This Distributed Cache host may cause cache reliability problems after Sharepoint servers removed移除 Sharepoint 服务器后,此分布式缓存主机可能会导致缓存可靠性问题
【发布时间】:2020-03-31 13:36:32
【问题描述】:
我最近从 4 个服务器场中删除了 2 个共享点服务器,我收到以下错误:
This Distributed Cache host may cause cache reliability;
More Cache hosts are running in this deployment than are registered with SharePoint.
这两个错误都指向两个已删除的服务器。
缓存集群仅将剩余的 2 台服务器显示为缓存主机。
我重新配置了分布式缓存,但仍然出现错误。
还尝试了here 列出的所有内容。
有什么想法吗?
【问题讨论】:
标签:
caching
sharepoint
sharepoint-2013
distributed-cache
【解决方案1】:
取自这里:http://alstechtips.blogspot.com/2015/02/sharepoint-2013-this-distributed-cache.html
首先,获取分布式缓存服务实例的 ID(使用 PowerShell)。
确保您编辑以下命令以添加您的 WFE 服务器名称。
Get-SPServiceInstance | Where-Object {$_.Server -Like "*<yourWFE>*"} | Select-Object TypeName, ID, Status | Sort-Object TypeName
在此列表中查找分布式缓存,并复制其 ID,然后编辑此命令以包含 ID:
(Get-SPServiceInstance <yourWFE-ID>).delete()
最后:
Remove-SPDistributedCacheServiceInstance
重新分析警报应该会显示它消失(已修复)。
然后由您决定是否要部署另一个分布式缓存服务实例。
【解决方案2】:
我从 Sharepoint“查看问题和解决方案”中删除了错误并再次运行规则。第二次没有出现错误。