centos7安全加固方案( 四 )


1)安装net-snmp服务 #yum -y install net-snmp
#chkconfig snmpd off ---将该服务设置为默认关闭,这里只是为以后部署cacti先预置一个支撑环境
如果不能联网安装,则可以使用安装光盘,并安装以下几个rpm包: lm_sensors,net-snmp , net-snmp-libs , net-snmp-utils
2)安装nagios-plugin和nrpe
a. 增加用户&设定密码 # useradd nagios # passwd nagios
b. 安装Nagios 插件
# tar zxvf nagios-plugins-2.0.3.tar.gz # cd nagios-plugins-2.0.3 # ./configure --prefix=/usr/local/nagios # make && make install
这一步完成后会在/usr/local/nagios/下生成三个目录include、libexec和share 。修改目录权限
# chown nagios.nagios /usr/local/nagios # chown -R nagios.nagios /usr/local/nagios/libexec
c. 安装NRPE
# tar zxvf nrpe-2.15.tar.gz # cd nrpe-2.15 # ./configure
# make all
接下来安装NPRE插件,daemon和示例配置文件 。c.1 安装check_nrpe 这个插件 # make install-plugin
监控机需要安装check_nrpe 这个插件,被监控机并不需要,在这里安装它只是为了测试目的 。
c.2 安装deamon # make install-daemon c.3 安装配置文件
# make install-daemon-config
现在再查看nagios 目录就会发现有5个目录了




推荐阅读