码迷,mamicode.com
首页 > 其他好文 > 详细

SharePoint 2013 Distributed Cache Service错误和解决办法

时间:2014-09-19 21:10:56      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:sharepoint   spdistributed   cacheservice   trouble shotting   2013   

接上篇 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错误和解决办法

标签:sharepoint   spdistributed   cacheservice   trouble shotting   2013   

原文地址:http://blog.csdn.net/abrahamcheng/article/details/39401151

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!