2.0 KiB
Distributed Cache (Fehlerbehebung)
Mittwoch, 24. Oktober 2018
11:56
Distributed Cache arbeitet laut SPDocKit nicht richtig.
Update Distributed Cache/ AppFarbic
- Powershell:
Use-CacheCluster
Get-AFCacheHostConfiguration -Computername bkkspqweb001 -cacheport "22233"
Get-AFCacheHostConfiguration -Computername bkkspqweb002 -cacheport "22233"
- Stop Ditributed Cache:
$instanceName ="SPDistributedCacheService Name=AppFabricCachingService"
$serviceInstance = Get-SPServiceInstance | ? {($_.service.tostring()) -eq $instanceName -and ($_.server.name) -eq $env:computername}
$serviceInstance.Unprovision()
- Überprüfen, ob der Distributed Cache gestoppt wurde.
Use-CacheCluster
Get-CacheHost
- Update-SPDistributedCacheSize -CacheSizeInMB 1638
- Start Distributed Cache:
$instanceName ="SPDistributedCacheService Name=AppFabricCachingService"
$serviceInstance = Get-SPServiceInstance | ? {($_.service.tostring()) -eq $instanceName -and ($_.server.name) -eq $env:computername}
$serviceInstance.Provision()
- Zur Optimierung folgendes Script auszuführen "SharePoint Server 2016 PowerShell-Skript" von der folgenden Quelle:
<https://docs.microsoft.com/de-de/SharePoint/administration/manage-the-distributed-cache-service>
INFOS:
https://docs.microsoft.com/de-de/SharePoint/administration/manage-the-distributed-cache-service
Gute Seite:
https://jlinssen.wordpress.com/2013/01/10/distrubited-cache-in-sharepoint-2013/
Howto Check DCS :