nagios安装部署

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

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

2.整合Apache和PHP=lamp

[root@c7-41 ~]# cat /etc/httpd/conf/httpd.conf | grep -v "^#"|grep -w "DirectoryIndex"
    DirectoryIndex index.php index.html
[root@c7-41 ~]# cat /etc/httpd/conf/httpd.conf | grep -w "AddType application/x-httpd-php .php"
    AddType application/x-httpd-php .php
[root@c7-41 ~]# cat /var/www/html/index.php 
<?php
phpinfo();
?>
[root@c7-41 ~]# systemctl start httpd

在这里插入图片描述

3.安装nagios

3.1创建组和用户

# groupadd nagios
# useradd -g nagios nagios

3.2解压

 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

3.3生成Nagios网页认证文件并创建用户

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

3.4启动nagios和apache

 service httpd  restart
 service nagios restart

3.5安装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

在这里插入图片描述在这里插入图片描述在这里插入图片描述
在这里插入图片描述

添加一个主机

[root@c7-41 ]# vim /usr/local/nagios/etc/objects/localhost.cfg 

define host{
        use                     linux-server            ; Name of host templat
e to use
                                                        ; This host definition
 will inherit all variables that are defined
                                                        ; in (or inherited by)
 the linux-server host template definition.
        host_name               1708a
        alias                   1708a
        address                 127.0.0.1
        }

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

云原生解决方案

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值