首页 > 代码库 > SharePoint 2013 Distributed Cache Service错误和解决办法
SharePoint 2013 Distributed Cache Service错误和解决办法
接上篇 SharePoint 2013 SPDistributedCacheService 介绍与配置
本文介绍常见 Distributed Cache Service错误和解决办法.
1. ErrorCode<ERRCAdmin010>:SubStatus<ES0001>:Specified host is not present in cluster.
PS C:> Use-CacheCluster PS C:> Get-CacheHostConfig –ComputerName [yourServerName] -CachePort 22233
该错误通常在没有加入Cluster 的机器上运行以上命令时抛出,解决办法为将该机器注册到Cluster 中:
PS C:> Register-CacheHost –Provider [yourProvider] –ConnectionString [yourConnectionString] -Account "NT AuthorityNetwork Service" -CachePort 22233 -ClusterPort 22234 -ArbitrationPort 22235 -ReplicationPort 22236 –HostName [yourServerName]
需要替换三个参数:
a. [yourProvider] 和 [yourProvider], 该参数可以在注册表HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\AppFabric\V1.0\Configuration节点下的ConnectionString 和 Provider中找到,或者在 C:\Program Files\AppFabric 1.1 for Windows Server 目录下的 DistributedCacheService.exe.config
b. -Account, 需要根据需要替换
c. [yourServerName] 为机器名
如果遇到错误说该机器已经配置Cache,可以运行 Remove-SPDistributedCacheServiceInstance -Graceful
2. 运行 Get-CacheHost发现某个Host 的状态为Down
PS C:> Get-CacheHost You should see the following. HostName : CachePort Service Name Service Status Version Info ——————– ———— ————– ———— MyServer1.domain.com:22233 AppFabricCachingService UP 3 [3,3][1,3] MyServer2.domain.com:22233 AppFabricCachingService UP 3 [3,3][1,3]
可以运行命令将其启动
PS C:> Start-CacheHost –ComputerName [yourServerName] –CachePort 22233
如果启动失败,检查该Host的"AppFabric Caching Service" 是否被禁用。
如果还是出错,则需要运行以下命令检查配置
PS C:> Export-CacheClusterConfig c\:CacheConfig.txt
找到错误修正后可以运行以下命令导入Cache Cluster 的配置
PS C:> Import-CacheClusterConfig C:\CacheConfig.txt
然后使用以下命令启动Cache cluster
PS C:> Start-CacheCluster
可以使用以下命令检查Cache cluster 是否存在问题
PS C:> Get-CacheClusterHealth可以使用以下命令查看Cache的内容
Get-Cache
SharePoint 2013 Distributed Cache Service错误和解决办法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。