如何在远程系统中自动进行健康检查?
我需要检查多个远程系统(Windows 2000)中的磁盘空间,如果空间低于特定级别,则必须发送邮件。如何实现自动化?可以使用什么脚本?
I need to check the disk space in a number of remote systems (Windows 2000) and have to sent a mail if the space is below a particular level. How can this be automated? What script can be used?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种选择是系统监控工具,例如 Nagios。
基本上,它的作用是不断询问您的系统,并就您设置的任何内容(磁盘空间、CPU 使用情况、页面错误等)向您发出警报。作为奖励,您将获得一个可爱的基于网络的界面,让您一目了然地看到系统状态。
请注意,您需要在每个目标系统上启用远程 WMI 查询,或者在每个系统上安装“代理”。
One option would be a system monitoring tool, such as Nagios.
Basically, what this will do is continually interrogate your systems, and alert you to anything you set it to (disk-space, CPU usage, page-faults, etc.). As a bonus you get a lovely web-based interface which lets you see your system status at a glance.
Note that you will need to enable remote WMI querying on each target system, or install an "agent" on each system.