redhat--nagios插件--check_traffic.sh】的更多相关文章

****在被监控主机安装nrpe**** (1)在被监控主机上,增加用户和密码 useradd nagios passwd nagios (2)安装nagios插件 tar zxf nagios-plugins-1.4.15.tar.gz(nagios-plugins-1.4.15放任意位置,一般习惯放在/opt目录下) cd nagios-plugins-1.4.15 ./configure --prefix=/usr/local/nagios make make install chown…
安装软件包yum -y install net-snmp*chkconfig nrpe onchkconfig snmpd on 使用SCP命令拷贝 check_traffic.sh 到 / usr/lib64/nagios/plugins/check_traffic.shGitHub 下载地址:https://github.com/cloved/check_traffic/blob/master/check_traffic.shwget https://github.com/cloved/ch…
安装软件包yum -y install net-snmp*chkconfig nrpe onchkconfig snmpd onchkconfig nagios on 修改snmp参数,vi /etc/snmp/snmpd.conf(可备份snmpd.conf,修改下面的localhost-IP为服务器IP,保存此文件即可) com2sec notConfigUser 127.0.0.1 public com2sec notConfigUser localhost-IP public group…
使用nagios插件 check_mysql_health 过程中遇到的error 1.如果在运行监控mysql插件的时候遇到了error安装以下依赖包就可以解决: yum install perl-DBD-MySQL yum install -y perl-Time-HiRes 2.check_mysql_health插件使用方法: ./check_mysql_health  --hostname=127.0.0.1 --port=3306  --username=root --passwor…
nagios 插件ndoutils 安装配置 原文地址:http://www.cnblogs.com/caoguo/p/5022645.html # Nagios install ndoutils # 安装ndoutils插件 [root@Cagios ~]# yum install -y mysql-devel perl-DBD-MySQL [root@Cagios ~]# wget http://nchc.dl.sourceforge.net/project/nagios/ndoutils-…
nagios插件nagiosql安装配置 # Nagiosql install [root@Cagios ~]# yum install -y libssh2 libssh-devel [root@Cagios ~]# cd /usr/local/src [root@Cagios src]# wget http://pecl.php.net/get/ssh2-0.12.tgz [root@Cagios ssh2-0.12]# phpize [root@Cagios ssh2-0.12]# ./c…
运行:sbc_calls_status_new auto_ssh_sbc_10_17.sh | auto_ssh_sbc_11_17.sh vi sbc_calls_status_new.c #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> #define OK 0 #define WARNING 1 #define CRITICAL 2 #define…
ssh_firewall_session.sh -- 登陆防火墙并运行dis session statistics firewall_check_sessions.c -- 调用上面脚本.过滤出sessioin的数值 运行:./firewall_check_sessions ssh_firewall_session.sh 192.168.0.1 vi ssh_firewall_session.sh #!/usr/bin/expect -f #set port 22 set user xxxxxx…
 nagios自带的http-check插件主要是检测地址url是否可以访问,在web+中间件的架构中容易出现url能访问,但是后台中间件拓机的情况,因为最近在自学python,所以写了个脚本检测url title的脚本,若中间件挂掉之后,则当前url的titile一定会发生变化,也可以专门设置一个test.jsp的页面用于检测中间件.数据源的健康状态. 第一步:写python脚本 首先要知道的是: Nagios 每次在查询一个服务的状态时,产生一个子进程,并且它使用来自该命令的输出和退出代码来…
vi check_if8_log.c #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> #include <errno.h> #define OK 0 #define WARNING 1 #define CRITICAL 2 #define UNKNOWN 3 #define LEN 400000 int exitstatus=OK; char…