nagios监控远程主机的存活、磁盘空间监控、负载监控、进程数监控、ip 连...[网络技术]
本文“nagios监控远程主机的存活、磁盘空间监控、负载监控、进程数监控、ip 连...[网络技术]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
这些监控包含:主机存活、磁盘空间监控、负载监控、进程数监控、ip 衔接数监控.
(1)、在监控服务器上定义主机配置文件hosts.cfg
define host {
host_name cacti.com
alias nagios server
address 192.168.10.195
contact_groups admins
check_command check-host-alive
max_check_attempts 5
notification_interval 10
notification_period 24x7
notification_options d,u,r
}
阐明:
● 接洽组contact_group 没有成立,需在背面的步骤完成.
● 主机查抄号令行普通挑选查抄主机存活check-host-alive.
● 最大尝试次数最好不要设置为“1”,普通3-4 次对比公道.
● 告诉时间隔断notification_interval 按照自己实际情形设定,它的单位是分钟.
● 告诉选项notification_options 几个值的意思是 d-down,u-unreacheable,r-recovery.
(2)、在监控服务器上定义服务配置文件 services.cfg
define service {
host_name cacti.com
service_description check-host-alive
check_period 24x7
max_check_attempts 4
normal_check_interval 3
retry_check_interval 2
contact_groups admins
notification_interval 10
notification_period 24x7
notification_options w,u,c,r
check_command check-host-alive
}
define service{
host_name cacti.com
service_description check-disk
check_command check_nrpe!check_df
max_check_attempts 4
normal_check_interval 3
retry_check_interval 2
check_period 24x7
notification_interval 10
notification_period 24x7
notification_options w,u,c,r
contact_groups admins
}
define service{
host_name cacti.com
service_description check-load
check_command check_nrpe!check_load
max_check_attempts 4
normal_check_interval 3
retry_check_interval 2
check_period 24x7
notification_interval 10
notification_period 24x7
notification_options w,u,c,r
contact_groups admins
}
define service{
host_name cacti.com
service_description total_procs
check_command check_nrpe!check_total_procs
max_check_attempts 4
normal_check_interval 3
retry_check_interval 2
check_period 24x7
notification_interval 10
notification_period 24x7
notification_options w,u,c,r
contact_groups admins
}
define service{
host_name cacti.com
service_description ip_connets
check_command check_nrpe! check_ip_connets
max_check_attempts 4
normal_check_interval 3
retry_check_interval 2
check_period 24x7
notification_interval 10
notification_period 24x7
notification_options w,u,c,r
contact_groups admins
}
阐明:
● 主机名 host_name,必须是主机配置文件hosts.cfg 中定义的主机.
● 查抄用的号令 check_command,在号令配置文件中定义或在nrpe 配置文件中有定
义.
● 最大重试次数 max_check_attempts 普通设置为3-4 次对比好,这样不会因为网络
闪断半晌而发生误报.
● 查抄隔断和重试查抄隔断的单位是分钟.
● 告诉隔断指探测到弊端今后,每隔多少时间发送一次报警信息. 它的单位是分钟.
● 告诉选项跟服务定义配置文件相同.
● 接洽组contact_groups 由配置文件contactgroup.cfg 定义.
● 查抄主机资源需求安装和配置nrpe,这个历程在背面完成.
(3) 在被监控端配置nrpe
改正配置文件/usr/local/nagios/etc/nrpe.cfg.改过的地方用粗体显示:
#以单独的保护进程运行
server_address=192.168.10.195
#command[check_hda1]=/usr/local/nrpe/libexec/check_disk -w 20 -c 10 -p /dev/hda1
command[check_df]=/usr/local/nagios/libexec/check_disk -x /dev -w 20 -c 10
command[check_ip_connets]=/usr/local/nagios/libexec/ip_conn.sh 8000 10000
阐明:
● command[check_df]=/usr/local/nagios/libexec/check_disk -w 20 -c 10 查抄整个服务器
的磁盘操纵率;假如是freebsd 系统,因为其/dev 分区为100%,需求解除这个分区,
因此其号令行应当为 “command[check_df]=/usr/local/nagios/libexec/check_disk -x
/dev -w 20 -c 10”.
● command[check_ip_connets]=/usr/local/nagios/libexec/ip_conn.sh 8000 10000 ip 衔接
数,
(4) 在被监控
以上是“nagios监控远程主机的存活、磁盘空间监控、负载监控、进程数监控、ip 连...[网络技术]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |