91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

nagios安裝配置方法

發布時間:2021-07-23 13:49:04 來源:億速云 閱讀:129 作者:chen 欄目:移動開發

本篇內容主要講解“nagios安裝配置方法”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“nagios安裝配置方法”吧!

一、監控服務器端安裝配置

1、下載軟件包

   nagios-3.0.6.tar.gz,nagios-plugins-1.4.13.tar.gz,nrpe-2.8.1.tar.gz

2、安裝環境和添加用戶組

   yum -y install httpd gcc glibc glibc-common gd gd-devel php php-mysql mysql mysql-server

   groupadd nagcmd

   yseradd -m nagios

   usermod -a -G nagcmd nagios

   usermod -a -G nagcmd apache

3、編譯安裝nagios

   tar -zxvf nagios-3.0.6.tar.gz;cd nagios-3.0.6

   ./configure –with-command-group=nagcmd –enable-event-broker

   make all;make install ;make install-init;make install-config;make install-commandmode

說明:第一步執行make install安裝主要的程序、CGI及HTML文件,第二步執行make install-init的步驟,它的作用是把nagios做成一個運行腳本,使nagios隨系統開機啟動,這是一個很方便的措施。第三步執行 make install-config 把配置文件的例子復制到nagios的安裝目錄。第四步執行 make install-commandmode 給外部命令訪問nagios配置文件的權限。

安裝完后 查看一下在/usr/local/nagios下是否存在etc、bin、 sbin、 share、 var這五個目錄,如果存在則可以表明程序被正確的安裝到系統了。這5個目錄的作用是:

bin

Nagios執行程序所在目錄,這個目錄只有一個文件nagios

etc

Nagios配置文件位置,初始安裝完后,只有幾個*.cfg-sample文件

sbin

Nagios Cgi文件所在目錄,也就是執行外部命令所需文件所在的目錄

Share

Nagios網頁文件所在的目錄

Var

Nagios日志文件、spid 等文件所在的目錄

4、http.conf配置

   在http.conf下面增加這一段

ScriptAlias /nagios/cgi-bin /usr/local/nagios/sbin

<Directory "/usr/local/nagios/sbin">

Options ExecCGI

AllowOverride None

Order allow,deny

Allow from all

AuthName "Nagios Access"

AuthType Basic

AuthUserFile /usr/local/nagios/etc/htpasswd

Require valid-user

</Directory>

Alias /nagios /usr/local/nagios/share

<Directory "/usr/local/nagios/share">

Options None

AllowOverride None

Order allow,deny

Allow from all

AuthName "Nagios Access"

AuthType Basic

AuthUserFile /usr/local/nagios/etc/htpasswd

Require valid-user

</Directory>

重啟http

htpasswd -c /usr/local/nagios/etc/htpasswd nagiosadmin

4、編譯安裝nagios-plugins

   tar -zxvf nagios-plugins-1.4.13.tar.gz;cd nagios-plugins-1.4.13

   ./configure –with-nagios-user=nagios –with-nagios-group=nagios

   make &&make install

5、配置、啟動nagios

   chkconfig --add nagios

   chkconfig nagios on

   setenfoce 0

   檢查配置文件: /usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg  

   service nagios start

6、安裝NRPE

   tar -zxvf nrpe-2.8.1.tar.gz ;cd  nrpe-2.8.1

   ./configure

   make all

   make install-plugin

   make install-daemon

   make install-daemon-config

   啟動NRPE: /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d

   修改nagios配置文件 commands.cfg

   添加

define command{

       command_name check_nrpe

       command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$

       }

檢查配置文件/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg  

重啟nagios service nagios restart

二、被監控機配置

1、下載軟件包nagios-plugins-1.4.13.tar.gz,nrpe-2.8.1.tar.gz

2、安裝

   tar -zxvf nagios-plugins-1.4.13.tar.gz;cd nagios-plugins-1.4.13

   ./configure –with-nagios-user=nagios –with-nagios-group=nagios

   make &&make install

   tar -zxvf nrpe-2.8.1.tar.gz;cd nrpe-2.8.1

   ./configure

   make all

   make install-plugin

   make install -daemon

   make install-daemon-config

3.配置nrpe信息

   vim /usr/local/nagios/etc/nrpe.cfg

   allowed_hosts=127.0.0.1,1.1.1.1(監控機IP)  //允許監控的IP

   /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg –d

   如果有防火墻,需要將開通5666端口,關閉selinux

4、檢查聯通性

  在監控端執行 /usr/local/nagios/libexec/check_nrpe -H 被監控IP,如果測試成功會得到NRPE版本,如果不成功就檢查防火墻,檢查配置文件設置是否允許監控機IP

三、飛信報警設置

1、下載和安裝飛信軟件

主軟件:wget http://www.it-adv.net/fetion/downng/fetion20091117-linux.tar.gz

主程序:wget http://bbs.it-adv.net/p_w_upload.php?aid=43&k=b1e8997336d66ec8610adc2b790376a2&t=1299230237

庫文件:wget http://www.it-adv.net/fetion/linuxso_20101113.rar

安裝飛信:

tar zxvf fetion20091117-linux.tar.gz -C /usr/local

將下載的主程序fetion覆蓋掉/usr/local/fx/下的fetion

在windows中解壓linuxso_20101113.rar并將里面的庫文件上傳至 /usr/local/fx/

cd /usr/local/fx

cp lib* /usr/lib

2.飛信測試

/usr/local/fx/fetion --mobile=15958045149 --pwd=12346 --to=15958045149 --msg-utf8=test

這樣后在fx目錄有個手機號的圖片,下載下來查看再輸入后就好了,以后就不用輸入了

3.nagios配置

修改nagios配置文件 commands.cfg

添加如下

define command {  

            command_name            notify-host-by-fei  

            command_line            /usr/local/fx/fetion --mobile=15958045149 --pwd=qazwsxedc --to=$CONTACTPAGER$ --msg-utf8="Host $HOSTSTATE$ alert for $HOSTNAME$! on '$LONGDATETIME$'" $CONTACTPAGER$  

            }  

# 'notify-service-by-fei' command definition  

define command {  

            command_name         notify-service-by-fei  

            command_line         /usr/local/fx/fetion --mobile=15958045149 --pwd=qazwsxedc --to=$CONTACTPAGER$ --msg-utf8="$HOSTADDRESS$ $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$ on $LONGDATETIME$" $CONTACTPAGER$  

            }  

修改contacts.cfg

在define contact{}里添加下面這段

service_notification_commands   notify-service-by-fei ; send service notifications via email

       host_notification_commands      notify-host-by-fei

pager 15958045149

檢查配置文件,重啟nagios

到此,相信大家對“nagios安裝配置方法”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平泉县| 广水市| 齐齐哈尔市| 福海县| 普安县| 嘉峪关市| 微博| 洛南县| 美姑县| 富裕县| 昌吉市| 遂溪县| 东港市| 乐山市| 长春市| 揭阳市| 称多县| 苏州市| 淮阳县| 贺兰县| 滦南县| 阿拉善右旗| 湖南省| 桂林市| 扶沟县| 远安县| 峡江县| 新郑市| 五莲县| 阜宁县| 天长市| 二连浩特市| 黎城县| 沙坪坝区| 永丰县| 泰顺县| 东辽县| 宜兰市| 白玉县| 常山县| 黄平县|