nagios监控安装部署

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nagios监控安装部署相关的知识,希望对你有一定的参考价值。

1、搭建LAMP环境并安装所需要的工具和库

 yum -y install httpd php openssl-devel gcc gcc-c++

2、整合Apache和PHP=lamp

 cat /etc/httpd/conf/httpd.conf | grep -v "^#"|grep -w "DirectoryIndex"
    DirectoryIndex index.php index.html
cat /etc/httpd/conf/httpd.conf | grep -w "AddType application/x-httpd-php .php"
    AddType application/x-httpd-php .php

cat /var/www/html/index.php 
<?php
phpinfo();
?>

systemctl start httpd

ip地址访问是否正常

3、创建组和用户

groupadd nagios
useradd -g nagios nagios

4、解压编译安装

cd nagios-4.2.1/
 ./configure --prefix=/usr/local/nagios
 make all
 make install
 make install-init
 make install-config
 make install-webconf
 make install-commandmode

5、生成Nagios网页认证文件并创建用户 用户名最好为:nagiosadmin

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

6、启动nagios和apache

service httpd  restart
service nagios restart

7、安装Nagios-plugins插件

tar zxf nagios-plugins-2.1.2.tar.gz 
cd nagios-plugins-2.1.2/
./configure --prefix=/usr/local/nagios
make
make install

以上是关于nagios监控安装部署的主要内容,如果未能解决你的问题,请参考以下文章

nagios监控安装部署

Nagios监控服务器安装和部署

Nagios安装与部署

监控之nagios的安装部署(监控本机及其他主机的配置+警报机制的配置)

nagios安装部署

Nagios监控配置