首页 > 移动平台 > 详细

centos6.5安装nagios

时间:2014-10-21 11:55:41      阅读:307      评论:0      收藏:0      [点我收藏+]
  1. 安装依赖包
    yum install httpd php gcc glibc glibc-common gd gd-devel

     

  2. 创建账号信息
    useradd -s /sbin/nologin nagios
    passwd nagios
    
    groupadd nagcmd
    usermod -a -G nagcmd nagios
    usermod -a -G nagcmd apache

     

  3. 编译软件
    ./configure --with-command-group=nagcmd
    
    make all
    
    make install
    
    make install-init
    
    make install-config
    
    make install-commandmode
    make install-webconf
    htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin
  4. 编译安装插件
    ./configure --with-nagios-user=nagios --with-nagios-group=nagios
    
    make
    
    make install

     chown -R nagios.nagcmd /usr/local/nagios

  5. 设置开机启动
    chkconfig --add nagios
    chkconfig --add httpd
    chkconfig nagios on
    chkconfig httpd on
    
    service httpd start
    service nagios start
    http://localhost/nagios/

centos6.5安装nagios

原文:http://www.cnblogs.com/superaltman/p/4039862.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!