Tip : Check AppFabric Cache Status Using PowerShell
It’s a daily job of a System Administrator to check AppFabric Cache status, and it will be very usefull to have a script to do so. Please find following script which will guide you to do so;
$hostinfo = Get-CacheHost
if($hostinfo.Status -eq [Microsoft.ApplicationServer.Caching.AdminApi.ServiceStatus]::Down)){
# Do whatever you want with a down AppFabric Cache host
}else{
# Do whatever you want with a running AppFabric Cache host
}
As usual, in order to execute this PowerShell script, you should perform following commands first;
Import-Module DistributedCacheAdministration Use-CacheCluster
Related posts:
- PowerShell ile AppFabric Cache Yönetimi
- Tip : AppFabric Önbellek Çalışma Durumunun PowerShell ile Kontrolü
- AppFabric Cache Management cmdlet
- AppFabric Cache Management cmdlet – v1.1
- Tip : Is Your PowerShell Session Running With Administrative Privileges?
- AppFabric Cache Yönetim cmdlet’i – 1.1
- AppFabric Cache Yönetim cmdlet’i
- Tip : IIS 7 ve Asp.Net için AppFabric Cache Erişim Yetkisi
- AppFabric Beta 2 Cache yapılandırma problemleri
- AppFabric Cache için geliştirme ortamının hazırlanması



April 2, 2010 









Android işletim sistemli cep telefonunuz var, peki Enterprisecoding Android uygulamasını denediniz mi? Enterprisecoding web sitesini her yerden takip edebileceğiniz, offline
No comments yet... Be the first to leave a reply!