Page 3 of 6

Re: Web interface time out

Posted: Thu Jan 16, 2014 12:19 pm
by abrist
Looks like selinux may still be an issue. What is the output of:

Code: Select all

getenforce

Re: Web interface time out

Posted: Thu Jan 16, 2014 12:29 pm
by rlevick
Enforcing

Re: Web interface time out

Posted: Thu Jan 16, 2014 12:34 pm
by abrist
Try:

Code: Select all

setenforce 0
gentenforce
You should probably disable selinux in: /etc/selinux/config
Change:

Code: Select all

SELINUX=enforcing
To:

Code: Select all

SELINUX=disabled

Re: Web interface time out

Posted: Thu Jan 16, 2014 12:49 pm
by rlevick
same thing after the changes and a reboot; getenforce shows disabled.

Re: Web interface time out

Posted: Thu Jan 16, 2014 3:37 pm
by lmiltchev
Run the following command and show us the output:

Code: Select all

grep nag /etc/group
BTW, you may try to recompile and see if this is going to solve your issue.

Re: Web interface time out

Posted: Thu Jan 16, 2014 5:04 pm
by rlevick
[root@localhost ~]# grep nag /etc/group
nagios:x:501:
nagcmd:x:502:nagios
[root@localhost ~]#

Re: Web interface time out

Posted: Fri Jan 17, 2014 1:06 pm
by slansing
Please run the following commands:

Code: Select all

usermod -a -G nagcmd apache

Code: Select all

usermod -a -G nagios apache
usermod -a -G nagios nagios

Re: Web interface time out

Posted: Fri Jan 17, 2014 1:21 pm
by rlevick
Still no joy.

I did run these commands again, but it didn't help.
cd nagios-4.0.2
./configure --with-command-group=nagcmd
make all
make install
make install-init
make install-config
make install-commandmode
make install-webconf

Re: Web interface time out

Posted: Fri Jan 17, 2014 3:53 pm
by slansing
If you use the address to your server in a web browser on the same network, do you get a standard apache splash page?

Can we see the output of this again, just to verify?:

Code: Select all

grep nag /etc/group

Re: Web interface time out

Posted: Fri Jan 17, 2014 5:38 pm
by rlevick
No default splash page.

[root@localhost ~]# grep nag /etc/group
nagios:x:501:apache,nagios
nagcmd:x:502:nagios,apache
[root@localhost ~]#