首先,我正在學習SharePoint 2013,我一直在關注一些教程,到目前爲止,我只是設置了一個農場,除了此服務外,一切似乎都正常工作正被記錄到事件觀看者,每5分鐘:AppFabric無法創建DataCache(LMTRepopulationJob FAILS)
的執行作業定義 Microsoft.Office.Server.UserProfiles.LMTRepopulationJob的方法(ID 1e573155-b7f6-441b-919b-53b2f05770f7)拋出異常。更多 信息包含在下面。
FeedCacheService.BulkLMTUpdate中的意外異常:無法通過 創建DataCache。 SPDistributedCache可能是下來..
我發現,這是被配置爲執行每5分鐘
而對於假設SPDistributedCache可能是一份工作,我已經驗證它,它正在運行
正如你可以看到,它實際上是運行,還我檢查通過SP的PowerShell(get-cachehost
和get-cacheclusterhealth
)主機緩存,當我執行命令get-cache
我還是一切似乎罰款
然而,我只得到了默認值,併爲我所閱讀應該有列出的其他高速緩存類型,如:
DistributedAccessCache_XXXXXXXXXXXXXXXXXXXXXXXXX DistributedBouncerCache_XXXXXXXXXXXXXXXXXXXXXXXX DistributedSearchCache_XXXXXXXXXXXXXXXXXXXXXXXXX DistributedServerToAppServerAccessTokenCache_XXXXXXX DistributedViewStateCache_XXXXXXXXXXXXXXXXXXXXXXX
除其他外,我想大概應該包括數據高速緩存
到現在爲止,我已經嘗試了一些解決方法,但都沒有成功
Restart-Service AppFabricCachingService
Remove-SPDistributedCacheServiceInstance
Add-SPDistributedCacheServiceInstance
Restart-CacheCluster
即使這個腳本它似乎在很多情況下工作,以修復AppFabric緩存服務
$SPFarm = Get-SPFarm
$cacheClusterName = "SPDistributedCacheCluster_" + $SPFarm.Id.ToString()
$cacheClusterManager = [Microsoft.SharePoint.DistributedCaching.Utilities.SPDistributedCacheClusterInfoManager]::Local
$cacheClusterInfo = $cacheClusterManager.GetSPDistributedCacheClusterInfo($cacheClusterName);
$instanceName ="SPDistributedCacheService Name=AppFabricCachingService"
$serviceInstance = Get-SPServiceInstance | ? {($_.Service.Tostring()) -eq $instanceName -and ($_.Server.Name) -eq $env:computername}
$serviceInstance.Delete()
Add-SPDistributedCacheServiceInstance
$cacheClusterInfo.CacheHostsInfoCollection
那麼,如果任何人有任何建議,我將非常感謝,謝謝你在前進!
什麼是你的問題? – user3791372
我如何才能使這項工作正確執行?我認爲我已經提供了足夠的信息來了解我的問題,如果您需要其他信息讓我知道,但請不要播放smartass –
您是否按照[SharePoint 2013 +分佈式緩存(AppFabric)故障排除](http://blogs.msdn.com/b/sambetts/archive/2014/03/19/sharepoint-2013-distributed-cache-appfabric-troubleshooting.aspx)和[修復Newsfeed& LMTRepopulationJob的事件ID 6393](http://blogs.msdn。COM/B/sambetts /存檔/ 2014/09/24 /故障排除SharePoint的事件-ID-6393.aspx)? – stuartd