码迷,mamicode.com
首页 > 移动开发 > 详细

centos6.5安装nagios

时间:2014-10-21 11:56:46      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   sp   div   

  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

标签:style   blog   http   color   io   os   ar   sp   div   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!