您好,登錄后才能下訂單哦!
搭建lamp
安裝epel源
rpm -ivh http://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm
epel.repo epel-testing.repo
修改epel.repo中的enable=1
yum install -y mysqlmysql-server php-mysql httpd php php-pdo lm_sensors net-snmp php-snmpnet-snmp-utils perl-Net-Daemon perl-PlRPC perl-DBI rrdtool perl-rrdtoolperl-DBD-MySQL net-snmp-libs libart_lgpl-devel
service httpdstart
如果啟動報錯:[root@linux211yum.repos.d]# service httpd start
Starting httpd: httpd:Could not reliably determine the server's fully qualified domain name, using192.168.2.211 for ServerName
[ OK ]
vi /etc/httpd/conf/httpd.conf
將ServerName www.example.com:80前面的注釋去掉
root@linux211 conf]# service httpd start Starting httpd: [ OK ] |
service mysqld start
[root@linux211 conf]# service mysqld start Initializing MySQL database: Installing MySQL system tables... OK Filling help tables... OK To start mysqld at boot time you have to copy support-files/mysql.server to the right place for your system PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER ! To do so, start the server, then issue the following commands: /usr/bin/mysqladmin -u root password 'new-password' /usr/bin/mysqladmin -u root -h linux211 password 'new-password' Alternatively you can run: /usr/bin/mysql_secure_installation which will also give you the option of removing the test databases and anonymous user created by default. This is strongly recommended for production servers. See the manual for more instructions. You can start the MySQL daemon with: cd /usr ; /usr/bin/mysqld_safe & You can test the MySQL daemon with mysql-test-run.pl cd mysql-test ; perl mysql-test-run.pl Please report any problems with the /usr/bin/mysqlbug script! The latest information about MySQL is available on the web at http://www.mysql.com Support MySQL by buying support/licenses at http://shop.mysql.com [ OK ] Starting mysqld: [ OK ] |
設置為開機啟動
chkconfig httpd on
chkconfig mysqld on
查看防火墻狀態
[root@linux211 conf]# /etc/init.d/iptables status Firewall is stopped. |
如果沒有關閉,就關閉防火墻
/etc/init.d/iptablesstop
驗證lamp是否可用
vim /var/www/html/index.php
<? |
http://ip地址/index.php
顯示除了php的版本信息,說明lamp是可用的
2.安裝nagios
groupadd nagcmd
useradd -m nagios
usermod -a -G nagcmdnagios
把apache加入到nagcmd組,以便于在通過web Interface操作nagios時能夠具有足夠的權限
usermod -a -G nagcmdapache
下載Nagios,開始編譯安裝
wget http://sourceforge.net/projects/nagios/?source=directory
--2014-02-25 14:01:05-- http://sourceforge.net/projects/nagios/?source=directory Resolving sourceforge.net... 216.34.181.60 Connecting to sourceforge.net|216.34.181.60|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 43274 (42K) [text/html] Saving to: `index.html?source=directory' 100%[=============================================================================================================================>] 43,274 51.3K/s in 0.8s 2014-02-25 14:01:08 (51.3 KB/s) - `index.html?source=directory' saved [43274/43274] |
下載nagios安裝包
wget http://prdownloads.sourceforge.net/sourceforge/nagios
/nagios-3.4.3.tar.gz
tar -zxvfnagios-3.4.3.tar.gz
cd nagios
[root@linux211 nagios]# ./configure --with-command-group=nagcmd checking for a BSD-compatible install... /usr/bin/install -c checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ANSI C... none needed checking whether make sets $(MAKE)... yes checking for strip... /usr/bin/strip checking how to run the C preprocessor... gcc -E checking for egrep... grep -E checking for ANSI C header files... yes checking whether time.h and sys/time.h may both be included... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking arpa/inet.h usability... yes checking arpa/inet.h presence... yes checking for arpa/inet.h... yes checking ctype.h usability... yes checking ctype.h presence... yes checking for ctype.h... yes checking dirent.h usability... yes checking dirent.h presence... yes |
make all
make[1]: Entering directory `/root/nagios/base' gcc -Wall -g -O2 -DHAVE_CONFIG_H -DNSCORE -c -o broker.o broker.c gcc -Wall -g -O2 -DHAVE_CONFIG_H -DNSCORE -c -o nebmods.o nebmods.c gcc -Wall -g -O2 -DHAVE_CONFIG_H -DNSCORE -c -o ../common/shared.o ../common/shared.c gcc -Wall -g -O2 -DHAVE_CONFIG_H -DNSCORE -c -o checks.o checks.c |
make install
make install-init
make install-config
makeinstall-commandmode
實現在httpd的配置文件目錄(conf.d)中創建Nagios的Web程序配置文件
makeinstall-webconf
創建一個登錄nagios web程序的用戶,這個用戶帳號在以后通過web登錄nagios認證時所用
htpasswd -c/usr/local/nagios/etc/htpasswd.users nagiosadmin
New password: Re-type new password: Adding password for user nagiosadmin |
以上過程配置結束以后需要重新啟動httpd:
servicehttpd restart
Stopping httpd: [ OK ] Starting httpd: [ OK ] |
編譯、安裝nagios-plugins
下載安裝包
wget http://assets.nagios.com/downloads/nagiosplugins/
nagios-plugins-1.5.tar.gz
tar -zxvfnagios-plugins-1.5.tar.gz
cd nagios-plugins-1.5
./configure --with-nagios-user=nagios--with-nagios-group=nagios
make
make install
把nagios添加為系統服務并將之加入到自動啟動服務隊列
chkconfig --add nagios
chkconfig nagios on
檢查其主配置文件的語法是否正確
/usr/local/nagios/bin/nagios-v /usr/local/nagios/etc/nagios.cfg
Checking contact groups... Checked 1 contact groups. Checking service escalations... Checked 0 service escalations. Checking service dependencies... Checked 0 service dependencies. Checking host escalations... Checked 0 host escalations. Checking host dependencies... Checked 0 host dependencies. Checking commands... Checked 24 commands. Checking time periods... Checked 5 time periods. Checking for circular paths between hosts... Checking for circular host and service dependencies... Checking global event handlers... Checking obsessive compulsive processor commands... Checking misc settings... Total Warnings: 0 Total Errors: 0 Things look okay - No serious problems were detected during the pre-flight check |
啟動nagios服務
service nagios start
安裝NRPE
wget http://prdownloads.sourceforge.net/sourceforge/
nagios/nrpe-2.13.tar.gz
tar -zxvfnrpe-2.13.tar.gz
cd nrpe-2.13
./configure
checking for initgroups... yes checking for closesocket... no checking for socklen_t... yes checking for type of socket size... size_t checking for SSL headers... SSL headers found in /usr/local/ssl checking for SSL libraries... configure: error: Cannot find ssl libraries |
安裝缺失的庫
yum -y installopenssl-devel
然后重新執行./configure就ok啦
checking for strtoul... yes checking for initgroups... yes checking for closesocket... no checking for socklen_t... yes checking for type of socket size... size_t checking for SSL headers... SSL headers found in /usr/local/ssl checking for SSL libraries... SSL libraries found in /usr/lib64 *** Generating DH Parameters for SSL/TLS *** Generating DH parameters, 512 bit long safe prime, generator 2 This is going to take a long time ........................+......................+.+......................+........................................+....................+.......+.....+............+........................................................................++*++*++*++*++*++* checking for Kerberos include files... could not find include files checking for perl... /usr/bin/perl configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating subst config.status: creating include/config.h *** Configuration summary for nrpe 2.13 11-11-2011 ***: General Options: ------------------------- NRPE port: 5666 NRPE user: nagios NRPE group: nagios Nagios user: nagios Nagios group: nagios Review the options above for accuracy. If they look okay, type 'make all' to compile the NRPE daemon and client. |
make all
cp src/check_nrpe/usr/local/nagios/libexec/
至此服務端搭建成功
客戶端配置
tar -zxvfnagios-plugins-1.5.tar.gz
cd nagios-plugins-1.5
/configure--with-nagios-user=nagios --with-nagios-group=nagios
make
報錯
/usr/bin/install: invalid user `nagios' make[2]: *** [install-libexecPROGRAMS] Error 1 make[2]: Leaving directory `/opt/nagios/nagios-plugins-1.5/plugins' make[1]: *** [install-am] Error 2 make[1]: Leaving directory `/opt/nagios/nagios-plugins-1.5/plugins' make: *** [install-recursive] Error 1 |
解決辦法如下
useradd nagios
mkdir /usr/local/nagios 如果目錄存在就不需要創建了
chown nagios:nagios/usr/local/nagios
ll /usr/local
make
make install
安裝NRPE
tar -zxvfnrpe-2.13.tar.gz
cd nrpe-2.13
./configure
make all
make install-plugin
make install-daemon
make install-daemon-config
make install-xinetd
cp src/check_nrpe /usr/local/nagios/libexec/
vim /usr/local/nagios/etc/nrpe.cfg
allowed_hosts=127.0.0.1,server IP
vim /etc/xinetd.d/nrpe
# default: on
# description: NRPE (Nagios Remote PluginExecutor)
service nrpe
{
flags = REUSE
socket_type = stream
port = 5666
wait = no
user = nagios
group = nagios
server =/usr/local/nagios/bin/nrpe
server_args = -c/usr/local/nagios/etc/nrpe.cfg --inetd
log_on_failure += USERID
disable = no
only_from = 127.0.0.1 192.168.2.211
vim /etc/services
nrpe 5666/tcp #nrpe
service xinetd star
[root@tomcat1 nrpe-2.13]# service xinetd start xinetd: unrecognized service |
報錯處理
yum -y install xinetd
安裝成功之后執行
service xinetd star
[root@tomcat1 nrpe-2.13]# service xinetd start Starting xinetd: [ OK ] |
測試NRPE是否正常工作
/usr/local/nagios/libexec/check_nrpe-H 127.0.0.1
root@tomcat1 nrpe-2.13]# /usr/local/nagios/libexec/check_nrpe -H 127.0.0.1 NRPE v2.13 |
cd /usr/local/nagios/
ls
cd etc/
ll
mkdir objects
為服務端增加NRPE命令
vi commands.cfg
define command {
command_name check_nrpe
command_line $USER1$/check_nrpe -H $HOSTADDRESS$-c $ARG1$
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。