我无法在其中一个SharePoint 2013 WFE服务器中启动或停止分布式缓存。它说"开始"用于中央管理员中的状态。我收到服务器错误,我认为分布式缓存可能因此而破坏数据。它被困在"开始"当我第一次跑到命令下面时的状态。
...添加-SPDistributedCacheServiceInstance
当我尝试使用下面的方法停止它时,我得到" cacheHostInfo为空"错误。
Stop-SPDistributedCacheServiceInstance -Graceful
我得到相同的" cacheHostInfo为null"我在脚本下面运行以删除实例时出错。
$ instanceName =" SPDistributedCacheService Name = AppFabricCachingService" $ serviceInstance = Get-SPServiceInstance | ? {($ .service.tostring()) - eq $ instanceName -and($ .server.name)-eq $ env:computername} $ serviceInstance.Unprovision() $ serviceInstance.Delete()
有任何想法如何解决这个问题?