nagios安装配置(二):nrpe

1.下载:

 

  
  
  
  
  1. wget http://nchc.dl.sourceforge.net/project/nagiosplug/nagiosplug/1.4.15/nagios-plugins-1.4.15.tar.gz -P /usr/local/src  
  2. wget http://nchc.dl.sourceforge.net/project/nagios/nrpe-2.x/nrpe-2.12/nrpe-2.12.tar.gz -P /usr/local/src  

2.  添加所需要的用户

  
  
  
  
  1. useradd -r nagios -M -s /bin/bash -d /usr/local/nagios 

3.安装nagios-plugin

  
  
  
  
  1. # 加压nagios-plugin  
  2. tar zxvf nagios-plugins-1.4.15.tar.gz  
  3. cd nagios-plugins-1.4.15  
  4. # 编译、安装  
  5. ./configure --with-mysql=/usr/local/mysql  
  6. make && make install  
  7. # 更改目录的拥有者为nagios  
  8. chown -R nagios:nagios /usr/local/nagios  

4.安装nrpe

  
  
  
  
  1. # 加压  
  2. tar zxvf nrpe-2.12.tar.gz  
  3. cd nrpe-2.12  
  4. # 编译、安装  
  5. ./configure  
  6. make all && make install-plugin && make install-daemon && make install-daemon-config  

5.添加nrpe为系统服务

  
  
  
  
  1. cp /usr/local/src/nrpe-2.12/init-script /etc/rc.d/init.d/nrpe  
  2. chown -R nagios:nagios /etc/rc.d/init.d/nrpe  
  3. chmod 0755 /etc/rc.d/init.d  
  4. # 添加为系统服务  
  5. chkconfig --add nrpe  
  6. # 设置为开机启动  
  7. chkconfig nrpe on  

 

 

你可能感兴趣的:(职场,nagios,nrpe,休闲)