三颱centos 6.5 x86_64 同一網段
主要軟體
主機一(nagios) nagios-4.0.1.tar.gz nagios-plugins-1.5 nrpe-2.15.tar.gz
主機二 (mysql)nagios-plugins-1.5 nrpe-2.15.tar.gz
主機三 (http) nagios-plugins-1.5 nrpe-2.15.tar.gz
主機一(nagios) 的配置
1, 搭建nagios監控系統
1) 關閉防火牆
service iptables stop
chkconfig iptables off
2)建立nagios使用者和使用者組
useradd -s /sbin/nologin nagios
mkdir /usr/local/nagios
chown -r nagios:nagios /usr/local/nagios
3)編譯安裝nagios
tar zxf nagios-4.0.1.tar.gz
cd nagios-4.0.1
./configure --prefix=/usr/local/nagios
make all
make install
make install-init
make install-commandmode
make install-config
chkconfig --add nagios
chkconfig --level 35 nagios on
4)檢視一下是否安裝成功
ls /usr/local/nagios
bin etc libexec sbin share var
5)安裝nagios外掛程式
tar zxf nagios-plugins-1.5.tar.gz
cd nagios-plugins-1.5
./configure --prefix=/usr/local/nagios
make && make install
監控端被監控主機之間使用ssl安全通道,需要首先安裝openssl-devel
yum -y install openssl-devel
tar zxvf nrpe-2.15.tar.gz
cd nrpe-2.15
./configure
make all
make install-plugin
6)安裝與配置apache與php
修改/etc/httpd/conf/httpd.conf配置檔案
使用者名稱 nagiosad 使用者密碼 nagiosad
/usr/bin/htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadm
檢視認證檔案內容
cat /usr/local/nagios/etc/htpasswd.users
nagiosadm:4qohe6ap1argi
在啟動httpd
我啟動時是這個樣子
開啟這個檔案新增乙個類似 servername www.wangqingxia.com
2.配置nagios監控系統
修改內容如下
伺服器監控系統 Nagios
1.安裝lamp或者lnmp架構 2.建立nagios使用者和使用者組 useradd s sbin nologin nagios 3.安裝依賴包 yum y install gcc perl unzip openssl devel tar zxf nagios cn.4.3.4.tar.gz cd...
Nagios 監控軟體
過程如下 解壓nagios tar zvxf nagios 3.2.1.tar.gz cd nagios 3.2.1 編譯 configure with command group nagcmd make all 安裝nagios,初始化指令碼及配置檔案,nagios將會被安裝至 usr local...
監控工具nagios
nagios 簡介 是乙個開源軟體,可以監控網路裝置網路流量 linux windows主機狀態,甚至可以監控印表機 它可以執行在linux上或windows上 基於瀏覽器的web介面方便運維人員檢視監控專案的狀態 支援web介面配置 管理操作 支援簡訊 郵件通知 可以自定義指令碼實現自定義化監控 ...