日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

centos6.4安装nagios—4.0.8

發布時間:2025/7/14 62 豆豆
生活随笔 收集整理的這篇文章主要介紹了 centos6.4安装nagios—4.0.8 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

一.安裝環境的配置


1.關閉防火墻。

[root@Nagios ~]# service iptables stop

2.關閉SELinux

[root@Nagios ~]# vim /etc/selinux/config

將SELINUX=disabled

二.安裝必要軟件

[root@Nagios ~]# yum -y install wget make openssl openssl-devel httpd php gcc glibc glibc-common gd gd-devel net-snmp mysql mysql-server mysql-devel perl perl-devel gnutls gnutls-devel

1.Nagios賬戶及組的添加

useradd nagios

groupadd nagios

usermod -a -G nagios nagios

usermod -a -G nagios apache

2..編譯與安裝nagios

wget http://jaist.dl.sourceforge.net/project/nagios/nagios-4.x/nagios-4.0.8/nagios-4.0.8.tar.gz

tar jxvf nagios-4.0.8 -C /usr/src/

cd /usr/src/nagios-4.0.8

./configure --prefix=/usr/local/nagios --with-command-group=nagios --with-nagios-user=nagios --with-nagios-group=nagios

make all

make clean

make all

make install

make install-init ? ?//服務啟動文件

make install-commandmode ? ?//命令文件

make install-config //配置

make install-webconf //apache配置

/usr/bin/htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin ?//輸入nagios的web管理密碼

[root@Nagios nagios]# cp -R contrib/eventhandlers/ /usr/local/nagios/libexec/

[root@Nagios nagios]# chown -R nagios:nagios /usr/local/nagios/libexec/eventhandlers/


測試nagios的配置文件

[root@Nagios nagios]# /usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg(最好做成一個腳本文件 隨時檢查nagios配置)

如果最后出現

Total Warnings: 0

Total Errors: ? 0


Things look okay - No serious problems were detected during the pre-flight check

就證明nagios配置無誤可正常啟動!


Nagios plugin的安裝

yum -y install gd gd-devel *openssl*

wget http://nagios-plugins.org/download/nagios-plugins-2.0.3.tar.gz

[root@Nagios nagios]# tar zxvf nagios-plugins-2.0.3.tar.gz-C /usr/src/??

[root@Nagios nagios]#cd /usr/src/nagios-plugins-2.0.3

[root@Nagios nagios-plugins-2.0.3]# ./configure --with-nagios-user=nagios --with-nagios-group=nagios --enable-extra-opts --enable-perl-modules --enable-libtap

編譯成功后,會出現如下信息:

? ? ? ? ?--with-apt-get-command:

? ? ? ? ? ? --with-ping6-command: /bin/ping6 -n -U -w %d -c %d %s

? ? ? ? ? ? ?--with-ping-command: /bin/ping -n -U -w %d -c %d %s

? ? ? ? ? ? ? ? ? ? ?--with-ipv6: yes

? ? ? ? ? ? ? ? ? ? --with-mysql: /usr/bin/mysql_config

? ? ? ? ? ? ? ? ? --with-openssl: yes

? ? ? ? ? ? ? ? ? ?--with-gnutls: no

? ? ? ? ? ? ?--enable-extra-opts: yes

? ? ? ? ? ? ? ? ? ? ?--with-perl: /usr/bin/perl

? ? ? ? ? ?--enable-perl-modules: yes

? ? ? ? ? ? ? ? ? ?--with-cgiurl: /nagios/cgi-bin

? ? ? ? ? ? ?--with-trusted-path: /bin:/sbin:/usr/bin:/usr/sbin

? ? ? ? ? ? ? ? ?--enable-libtap: yes

[root@Nagios nagios-plugins-2.0.3]# make

[root@Nagios nagios-plugins-2.0.3]# make install


將nagios及httpd加入啟動項,并自動啟動

[root@Nagios nagios-plugins-2.0.3]# chkconfig --add nagios

[root@Nagios nagios-plugins-2.0.3]# chkconfig --level 35 nagios on

[root@Nagios nagios-plugins-2.0.3]# chkconfig --add httpd

[root@Nagios nagios-plugins-2.0.3]# chkconfig --level 35 httpd on

安裝完畢!


轉載于:https://blog.51cto.com/skykws8023/1338257

總結

以上是生活随笔為你收集整理的centos6.4安装nagios—4.0.8的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。