我想AppFabric
通过c#编程获取缓存主机的运行状态。有没有办法做到这一点?
问问题
1175 次
1 回答
2
您可以Powershell
按照以下步骤使用命令执行此操作;
- 下载
PowerShell v2 SDK
- 创建一个运行我们的 Powershell 命令的环境。
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
于 2012-12-26T11:07:32.347 回答