zettelkasten/OneNoteExport/Kommunikationstechnologie/Sharepoint/Infrastruktur/63_Distributed Cache (Fehlerbehebung).md
Ralf Koop 5a108aa2b4 .
2023-08-25 23:29:11 +02:00

2.0 KiB

Distributed Cache (Fehlerbehebung)

Mittwoch, 24. Oktober 2018

11:56

 

Distributed Cache arbeitet laut SPDocKit nicht richtig.

 

Update Distributed Cache/ AppFarbic

 

  1. Powershell:        

Use-CacheCluster

Get-AFCacheHostConfiguration -Computername bkkspqweb001 -cacheport "22233"

Get-AFCacheHostConfiguration -Computername bkkspqweb002 -cacheport "22233"

 

  1. Stop Ditributed Cache:

$instanceName ="SPDistributedCacheService Name=AppFabricCachingService"
$serviceInstance = Get-SPServiceInstance | ? {($_.service.tostring()) -eq $instanceName -and ($_.server.name) -eq $env:computername}
$serviceInstance.Unprovision()

 

  1. Überprüfen, ob der Distributed Cache gestoppt wurde.

Use-CacheCluster

Get-CacheHost

 

  1. Update-SPDistributedCacheSize -CacheSizeInMB 1638

 

  1. Start Distributed Cache:

$instanceName ="SPDistributedCacheService Name=AppFabricCachingService"
$serviceInstance = Get-SPServiceInstance | ? {($_.service.tostring()) -eq $instanceName -and ($_.server.name) -eq $env:computername}
$serviceInstance.Provision()

 

  1. 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:

http://blog.trivadis.com/b/collaboration/archive/2014/09/17/sharepoint-2013-distributed-cache-und-was-es-dabei-zu-beachten-gilt.aspx

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/

 

https://blogs.msdn.microsoft.com/sambetts/2014/03/19/sharepoint-2013-distributed-cache-appfabric-troubleshooting/

 

 

Howto Check DCS :

https://blogs.technet.microsoft.com/filipbosmans/2015/09/07/how-to-check-for-issues-with-distributed-cache-and-the-script/