哪些 PowerShell/WSMan 客户端或查询每 2 秒消耗超过 1000 个请求?

哪些 PowerShell/WSMan 客户端或查询每 2 秒消耗超过 1000 个请求?

Exchange 2010 远程管理工具出现以下错误

[txexmb02.ibm.com] Connecting to remote server failed with the following error message : The WS-Management service cannot
process the request. The system load quota of 1000 requests per 2 seconds has been exceeded. Send future requests at
 a slower rate or raise the system quota. The next request from this user will not be approved for at least 558475776 
milliseconds. For more information, see the about_Remote_Troubleshooting Help topic.
    + CategoryInfo          : OpenError: (System.Manageme....RemoteRunspace:RemoteRunspace) [], PSRemotingTransportException
    + FullyQualifiedErrorId : PSSessionOpenFailed
VERBOSE: Connecting to TXEXHC02.ibm.com

帮助文档此错误引用说这是一个 WS-Man 错误。

我们正在运行 SCOM 2007 R2,并且认为这会增加查询数量,但我需要证明这一点。

答案1

您可以使用以下命令深入了解 Powershell/WS-Man 会话:

Get-WSManInstance -ConnectionURI http://myserver.contoso.com:5985/wsman shell -Enumerate

此命令可以在本地或远程服务器上运行。myserver.contoso.com 表示所有客户端正在连接到的远程服务器。您将看到有关每个打开的会话、其状态和内存使用情况的信息。

相关内容