搭建nagios监控服务
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-04-28
chctl start & 把apache启动到后台 注意有的版本自带了自己的apache服务,不要试验 /etc/init.d/httpd start 进行启动会冲突 四.进入到/usr/local/nagios/etc/ 下,目录结构如下 然后进入到 ./nagios 下对nagios 配置文件进行修改 cfg_file=/usr/local/nagios//etc/objects/commands.cfg //会在 object 的目录下生成相应的配置文档 cfg_file=/usr/local/nagios//etc/objects/contacts.cfg //同上 cfg_file=/usr/local/nagios//etc/objects/timeperiods.cfg // 同上 cfg_file=/usr/local/nagios//etc/objects/templates.cfg // 同上 cfg_file=/usr/local/nagios//etc/objects/windows.cfg //取消的注释行,开启监测windows服务器 cfg_file=/usr/local/nagios//etc/objects/switch.cfg //取消的注释行,开启对路由和交换机的监测 command_check_interval=-10s //设定服务器掉线的允许时间,默认为1s enable_notifications=1 //是否发送通知的过滤器 在cgi.cfg中进行修改 authorized_for_system_information=nagiosadmin,zhangbo authorized_for_configuration_information=nagiosadmin,zhangbo authorized_for_system_commands=zhangbo //多个用户之间用逗号隔开 authorized_for_all_services=nagiosadmin,zhangbo authorized_for_all_hosts=nagiosadmin,zhangbo authorized_for_all_service_commands=nagiosadmin,zhangbo authorized_for_all_host_commands=nagiosadmin,zhangbo 下面进入到 ./object 的目录下,改目录的结构如下: 再 contacts.cfg 中进行修改:这里主要是联系人的相关设置 define contactgroup{ contactgroup_name admins //联系组的相应组名,后面要用到 alias Nagios Administrators //别名 members zhangbo //成员,多用户用“,”隔开 } define contact{ contact_name zhangbo //联系人 alias Nagios zhangbo (Admin) //别名 email zhangbo@邮箱 //联系人的邮箱,通知的邮箱 } 再timeperiods.cfg 中没有修改: //这里主要是一些关于监测时间,报警时间,间断时间的一些设置,保持默认即可 在 localhost.cfg 下的修改: define hostgroup{ hostgroup_name hostadmin //监视的主机组的名称 alias hostadmin //别名 members zhangbo //成员名 ,多用户用“,”隔开 } define host{ use linux-server //使用的类定义,根据templates.cfg的定义 host_name zhangbo //主机名 alias zhangbo //别名 parents MainSwitch address 192.168.1.251 //对应的ip地址 icon_image server.gif statusmap_image server.gd2 2d_coords 500,200 3d_coords 500,200,100 } 再 templates.cfg 中进行修改://可以根据自己的需要进行相应类的定义 define contact{ name generic-contact //定义的类名 service_notification_period 24x7 host_notification_period 24x7 service_notification_options w,u,c,r,f,s events, and scheduled downtime events |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: Linux Samba RHEL 4下一篇: linux 文件目录
关于搭建nagios监控服务的所有评论