是否有任何方法以编程方式检查AppFabric缓存主机是否活跃
本文关键字:是否 AppFabric 缓存 主机 活跃 检查 编程 任何 方法 方式 | 更新日期: 2023-09-27 17:49:36
我想通过c#编程获取AppFabric
缓存主机的运行状态。有什么办法可以做到吗?
您可以按照以下步骤使用Powershell
命令;
- 下载
- 创建一个运行Powershell命令的环境。
PowerShell v2 SDK
var initialSessionState = InitialSessionState.CreateDefault(); initialSessionState.ThrowOnRunspaceOpenError = true; runspace = RunspaceFactory.CreateRunspace(initialSessionState); runspace.Open();
- 让我们创建一个管道。
var pipeline = runspace.CreatePipeline();
- 将命令行传递给Powershell中的管道,该管道在缓存中运行。
pipeline.Commands.Add(new Command("Use-CacheCluster")); pipeline.Commands.Add(new Command("Get-CacheHost"));
Get-CacheHost
给出了缓存服务器信息。并使用Invoke()
方法运行。
var result = pipeline.Invoke();
- 与
result
对象,
var initialSessionState = InitialSessionState.CreateDefault(); initialSessionState.ImportPSModule(new[] { "DistributedCacheAdministration" }); initialSessionState.ThrowOnRunspaceOpenError = true; runspace = RunspaceFactory.CreateRunspace(initialSessionState); runspace.Open(); var pipeline = runspace.CreatePipeline(); pipeline.Commands.Add(new Command("Use-CacheCluster")); pipeline.Commands.Add(new Command("Get-CacheHost")); var result = pipeline.Invoke(); var hostInfo = (HostInfo)result[0].BaseObject; Console.Out.WriteLine("Server Name : " + hostInfo.HostName); Console.Out.WriteLine("Server Port : " + hostInfo.PortNo); Console.Out.WriteLine("Server Service Name : " + hostInfo.ServiceName); Console.Out.WriteLine("Server Status : " + hostInfo.Status); Console.Out.WriteLine("Server Version : " + hostInfo.VersionInfo);
另外,不要忘记添加这些程序集引用;
-
Microsoft.ApplicationServer.Caching.Client
-
Microsoft.ApplicationServer.Caching.Core
-
Microsoft.ApplicationServer.Caching.Management
-
System.Management.Automation