centos6.6 nagiosのインストール(実際のインストールが完了し、ブログが補完されていません)

1203 ワード

システム環境
[root@nagios_server ~]# uname -a
Linux nagios_server 2.6.32-504.30.3.el6.x86_64 #1 SMP Wed Jul 15 10:13:09 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux

インストール環境
[root@nagios_server ~]# yum -y install httpd gcc glibc glibc-common gd gd-devel php php-mysql mysql mysql-devel mysql-server ntp

nagios実行のユーザー名、ユーザーグループを追加し、http実行ユーザーapacheをnagiosグループに追加
[root@nagios_server ~]# groupadd nagios
[root@nagios_server ~]# useradd -g nagios nagios
[root@nagios_server ~]# usermod -a -G nagios apache

nagiosのダウンロード
[root@nagios_server src]# wget 
[root@localhost src]# tar -zxvf nagios-3.3.1.tar.gz
[root@localhost src]# cd nagios
[root@localhost nagios]#  ./configure --prefix=/usr/local/nagios --sysconfdir=/etc/nagios --enable-event-broker
[root@localhost nagios]# make all
[root@localhost nagios]# make install
[root@localhost nagios]# make install-init
[root@localhost nagios]# make install-commandmode
[root@localhost nagios]# make install-config
[root@localhost nagios]# make install-webconf
[root@localhost nagios]# chkconfig --add nagios
[root@localhost nagios]# chkconfig --level 35 nagios on