溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Nagios 監(jiān)控平臺(tái)快速安裝

發(fā)布時(shí)間:2020-05-18 08:39:30 來(lái)源:網(wǎng)絡(luò) 閱讀:866 作者:吳光科 欄目:移動(dòng)開(kāi)發(fā)
Nagios是一款開(kāi)源的免費(fèi)網(wǎng)絡(luò)監(jiān)視工具,能有效監(jiān)控Windows、Linux和Unix的主機(jī)狀態(tài),交換機(jī)路由器等網(wǎng)絡(luò)設(shè)置,打印機(jī)等。
 
一、首先安裝apache:
  1. 安裝apache,采用yum方式安裝,安裝的命令是yum install –y httpd  
  2. 安裝完apache后,啟動(dòng)apache命令/etc/init.d/httpd restart 即可! 
 
二、安裝php:
  1. Nagios是基于php語(yǔ)音編寫(xiě)的程序,所以需要安裝php,也采用yum方式安裝  
  2. Yum install php php-devel -y即可 
  
三、下載nagios:
  1. 現(xiàn)在nagios版本和客戶端插件地址如下:  
  2. wget http://sourceforge.net/projects/nagios/files/nagios-3.x/nagios-3.2.1/nagios-3.2.1.tar.gz/download  
  3. wget http://sourceforge.net/projects/nagiosplug/files/nagiosplug/1.4.15/nagios-plugins-1.4.15.tar.gz/download   
  4. wget  http://jaist.dl.sourceforge.net/project/nagios/nrpe-2.x/nrpe-2.13/nrpe-2.13.tar.gz   
  5.    
  6. 創(chuàng)建用戶維護(hù)Nagios的用戶和組  
  7. useradd nagios  
  8. passwd nagios 
四、在服務(wù)器端,安裝Nagios和nrpe、nagios插件:
  1. 安裝Nagios  
  2. tar zxvf nagios-3.2.1.tar.gz  
  3. cd nagios-3.2.1  
  4. ./configure --prefix=/usr/local/nagios --with-nagios-user=nagios --with-nagios-group=nagios  
  5. make all  
  6. make install                   //來(lái)安裝主程序,CGI和HTML文件  
  7. make install-init              //在/etc/rc.d/init.d安裝啟動(dòng)腳本  
  8. make install-config            //來(lái)安裝示例配置文件,安裝的路徑是/usr/local/nagios/etc  
  9. make install-commandmode//來(lái)配置目錄權(quán)限   
  10. make install-webconf     寫(xiě)入配置文件  
  11.    
  12. 安裝Nagios-plugins  
  13. tar zxvf nagios-plugins-1.4.15.tar.gz  
  14. cd nagios-plugins-1.4.15  
  15. ./configure --prefix=/usr/local/nagios --with-nagios-user=nagios --with-nagios-group=nagios  
  16. make && make install  
  17. 安裝nrpe   
  18. tar -xzf nrpe-2.13.tar.gz && cd nrpe-2.13 &&./configure --enable-ssl --with-ssl-lib &&make all && make install-plugin && make install-daemon && make install-daemon-config  
  19. chown  -R nagios:nagios /usr/local/nagios/   
  20.  
  21. /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d  啟動(dòng)nrpe服務(wù) 
 
五、創(chuàng)建web 訪問(wèn)用戶:
  1. 增加訪問(wèn)控制驗(yàn)證用戶:(第一次創(chuàng)建時(shí)要加參數(shù)c)  
  2. htpasswd -c /usr/local/nagios/etc/htpasswd.users  nagiosadmin  
  3.  
  4. nagios安裝完畢,然后重啟apache,重啟nagios,/etc/init.d/nagios restart  
  5. 訪問(wèn):http://localhost/nagios/ 即可! 即可訪問(wèn)到nagios最初安裝界面 
 
六、在客戶端安裝nrpe、nagios-plugin:
  1. 首先下載nagios-plugins-1.4.15.tar.gz和nrpe-2.13.tar.gz,  
  2.    
  3. 執(zhí)行如下腳本即可:  
  4. #!/bin/sh  
  5. ###auto make install nagios_plugin and nrpe  
  6. useradd nagios  
  7. tar -xzf nagios-plugins-1.4.15.tar.gz &&cd nagios-plugins-1.4.15 &&./configure --prefix=/usr/local/nagios &&make &&make install  
  8.    
  9. sleep 2  
  10.    
  11. echo "This is make install nrpe ,please waiting .................."  
  12. cd ../ ; tar -xzf nrpe-2.13.tar.gz && cd nrpe-2.13 &&./configure --enable-ssl --with-ssl-lib &&make all && make install-plugin && make install-daemon && make install-daemon-config  
  13.    
  14. chown  -R nagios:nagios /usr/local/nagios/  
  15. cd .. ;cp nrpe.cfg /usr/local/nagios/etc/nrpe.cfg  
  16.    
  17. /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d  
  18.    
  19. ###Add auto start  
  20. grep "nrpe" /etc/rc.local  
  21.    
  22. if [ $? -ne 0 ];then  
  23. echo "/usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d" >>/etc/rc.local  
  24. else  
  25. echo "nrpe is exist"  
  26. fi  
  27. 保存即可! 

 

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI