監控軟體nagios之安裝

2021-09-21 09:44:41 字數 4210 閱讀 8683

1.安裝軟體依賴包和建立nagios使用者

[root@tong1 ~]# yum install gcc gcc-c++ make -y

[root@tong1 ~]# groupadd -g 500 nagios

[root@tong1 ~]# useradd  -r -u 500 -s /sbin/nologin -g nagios nagios

[root@tong1 ~]# 

2.安裝apache和php環境

測試訪問:

3.安裝nagios監控軟體

[root@tong1 ~]# wget 

[root@tong1 ~]# wget 

[root@tong1 ~]# tar xvf nagios-4.0.8.tar.gz

[root@tong1 nagios-4.0.8]# ./configure  --prefix=/usr/local/nagios-4.0.8

[root@tong1 nagios-4.0.8]# make all

[root@tong1 nagios-4.0.8]# make install

[root@tong1 nagios-4.0.8]# make install-init

[root@tong1 nagios-4.0.8]# make install-commandmode

[root@tong1 nagios-4.0.8]# make install-config

[root@tong1 nagios-4.0.8]# make install-webconf

[root@tong1 nagios-4.0.8]# make install-exfoliation

[root@tong1 nagios-4.0.8]# make install-classicui

[root@tong1 nagios-4.0.8]# ll /usr/local/nagios-4.0.8/

total 24

drwxrwxr-x.  2 nagios nagios 4096 apr  1 13:59 bin            --可執行檔案

drwxrwxr-x.  3 nagios nagios 4096 apr  1 14:00 etc            --配置檔案

drwxrwxr-x.  2 nagios nagios 4096 apr  1 13:59 libexec       --外掛程式

drwxrwxr-x.  2 nagios nagios 4096 apr  1 13:59 sbin           --nagios cgi檔案目錄

drwxrwxr-x. 10 nagios nagios 4096 apr  1 13:59 share        --網頁檔案

drwxrwxr-x.  5 nagios nagios 4096 apr  1 13:59 var            --日誌檔案

[root@tong1 nagios-4.0.8]# cd ../

[root@tong1 ~]# tar xvf nagios-plugins-2.0.3.tar.gz

[root@tong1 ~]# cd nagios-plugins-2.0.3

[root@tong1 nagios-plugins-2.0.3]# ll /usr/local/nagios-4.0.8/libexec/       --nagios沒有外掛程式

total 0

[root@tong1 nagios-plugins-2.0.3]# ./configure --prefix=/usr/local/nagios-4.0.8/

[root@tong1 nagios-plugins-2.0.3]# make && make install

[root@tong1 nagios-plugins-2.0.3]# ll /usr/local/nagios-4.0.8/libexec/ | head -3   --nagios有外掛程式了

total 6028

-rwxr-xr-x. 1 root root 179202 apr  1 14:07 check_apt

-rwxr-xr-x. 1 root root   2249 apr  1 14:07 check_breeze

[root@tong1 nagios-plugins-2.0.3]#

5.apache整合nagios監控

authuserfile /usr/local/nagios-4.0.8/etc/htpasswd       --用於此目錄訪問身份驗證的檔案

require valid-user

alias /nagios "/usr/local/nagios-4.0.8/share"        --定義別名

測試結果:

Nagios 監控軟體安裝

一,軟體安裝 ll rwxrwxr x 1 root root 9097591 2009 12 31 nagios 20091231.tar.bz2 1 解壓軟體包 tar jxvf nagios 20091231.tar.bz2 2.安裝 soft monitoring nagios nagios...

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

無監控,不運維。沒有了監控,運維靠什麼排查問題?靠什麼調優?靠什麼規劃資源?因此,監控系統對於做好運維是必不可少的。目前,比較流行的開源監控有zabbix nagios pormetheus open falcon等。nagios是一款開源的伺服器和網路監視工具,能有效監控windows linux...