instalando o Nagios 3.5.0 no CentOS 6

1

Oi eu estou recebendo os seguintes erros quando eu corro make all

/usr/bin/install: cannot stat 'nagios': No such file or directory
make[2]: *** [install-basic] Error 1
make[2]: Leaving directory '/root/nagios/nagios/base'
make[1]: *** [install] Error 2
make[1]: Leaving directory '/root/nagios/nagios/base'
make: *** [install] Error 2

estou seguindo link e também adicionou o seguinte

1) Create Account Information

Become the root user.

su -l

Create a new nagios user account and give it a password.

/usr/sbin/useradd -m nagios

passwd nagios

Create a new nagcmd group for allowing external commands to be submitted through the web interface. Add both the nagios user and the apache user to the group.

/usr/sbin/groupadd nagcmd

/usr/sbin/usermod -a -G nagcmd nagios

/usr/sbin/usermod -a -G nagcmd apache

antes de eu executar o make all

    
por RussellHarrower 10.04.2013 / 07:27

1 resposta

1

Este diretório está presente no seu servidor Nagios?

/root/nagios/nagios/base

Em vez do documento que você está seguindo, sugiro seguir o Guia de Iniciação Rápida do Nagios para o Fedora, já que o CentOS também é baseado em RPM

 http://nagios.sourceforge.net/docs/3_0/quickstart-fedora.html
    
por 10.04.2013 / 07:48