Problem with installation Nagios 3.2.2

Support forum for Nagios Core, Nagios Plugins, NCPA, NRPE, NSCA, NDOUtils and more. Engage with the community of users including those using the open source solutions.
Locked
sistemAs
Posts: 1
Joined: Fri Sep 10, 2010 4:02 am

Problem with installation Nagios 3.2.2

Post by sistemAs »

Hi, I am installing Nagios 3.2.2 in Centos 5.5, then when I run make install I get the following error :

[root@server5 nagios-3.2.2]# make install
cd ./base && make install
make[1]: se ingresa al directorio `/usr/local/src/nagios-3.2.2/base'
make install-basic
make[2]: se ingresa al directorio `/usr/local/src/nagios-3.2.2/base'
/usr/bin/install -c -m 775 -o nagios -g nagios -d /usr/local/nagios/bin
/usr/bin/install: grupo inválido «nagios»
make[2]: *** [install-basic] Error 1
make[2]: se sale del directorio `/usr/local/src/nagios-3.2.2/base'
make[1]: *** [install] Error 2
make[1]: se sale del directorio `/usr/local/src/nagios-3.2.2/base'
make: *** [install] Error 2

I have followed these initial steps:

yum -y install httpd
yum -y install gcc
yum -y install glibc glibc-common
yum -y install gd gd-devel

useradd -m nagios

groupadd nagcmd
usermod -a -G nagcmd nagios
usermod -a -G nagcmd apache

./configure --with-command-group=nagcmd
mguthrie
Posts: 4380
Joined: Mon Jun 14, 2010 10:21 am

Re: Problem with installation Nagios 3.2.2

Post by mguthrie »

try "make" after you run ./configure
Locked