nagios监控3306端口

Posted 巫谢

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nagios监控3306端口相关的知识,希望对你有一定的参考价值。

1、修改 /usr/local/nagios/etc/objects/commands.cfg  添加一个服务名

# check port 4000
define command{
        command_name    3306
        command_line    $USER1$/check_tcp -H $HOSTADDRESS$ -p 3306 $ARG2$
        }

2、然后修改linux的模板

define service{
        use                     generic-service
        host_name               host
        service_description     db
        check_command           check_3306
                max_check_attempts      5
        normal_check_interval   3
        retry_check_interval    2
        check_period            24x7
        notification_interval   10
        notification_period     24x7
        notification_options    w,u,c,r
        }

 

以上是关于nagios监控3306端口的主要内容,如果未能解决你的问题,请参考以下文章

Nagios 监控任意 tcp 端口

使用nagios监控交换机端口流量,对低于阈值的流量进行报警

Linux 监控

Nagios

nagios监控主机显示down,监控的服务却正常

linux学习笔记-nagios监控的简单配置