从 C# 应用程序检查多台计算机上的服务器状态
我在不同的机器上有多个内容服务器。我需要检查每台服务器的状态。我担心磁盘大小、优先级等问题。
我现在使用的一个解决方案是在每台计算机上安装一个 Window 服务,定期检查服务器,但我必须在每台服务器上手动安装该服务。
有什么方法可以从 WCF 服务或使用 Windows 应用程序获取服务器信息(例如磁盘空间)吗?我想为我的服务器创建一个观察程序,因为有时我必须添加服务器。
I have multiple content servers on different machines. I need to check the status of every server. I'm concerned about things like disk size, priority etc.
One solution that I'm using now is to install a Window Service on each machine which regularly checks the server but I have to manually install the service on each server.
Is there any way I can get the server information like disk space from a WCF service or using a windows application? I want to create a single watcher for my servers as I have to add servers sometimes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 Windows WMI,只要您有权限,您就可以对计算机进行远程调用。您只需在一台可以连接到其他服务器的服务器上运行一项服务。
http://msdn.microsoft。 com/en-us/library/windows/desktop/aa394582(v=vs.85).aspx
Look at windows WMI you can make remote calls to machines so long as you have permissions to do so. You will only have to run one service on one server that can connect to the others.
http://msdn.microsoft.com/en-us/library/windows/desktop/aa394582(v=vs.85).aspx