I see this error in all my pages in nagios:<br><br><b><span style="color: rgb(255, 0, 0);">It appears as though you do not have permission to view information for any of the hosts you requested...</span><br>If you believe this is an error, check the HTTP server authentication requirements for accessing this CGI<br>
and check the authorization options in your CGI configuration file.<br></b><br>When i install nagios i put:<br><br><br>useradd -m nagios<br>groupadd nagios<br><br>usermod -a -G nagcmd nagios<br>usermod -a -G nagcmd apache<br>
<br>tar xzf nagios-3.2.0.tar.gz <br>cd nagios-3.2.0<br>./configure --with-command-group=nagcmd --prefix=/nagios<br>make all && make install && make install-init && make install-config && make install-commandmode && make install-webconf<br>
<br>htpasswd -c /nagios/etc/htpasswd.users admin<br><br>tar xzf nagios-plugins-1.4.14.tar.gz<br>cd nagios-plugins-1.4.14<br>./configure --with-nagios-user=nagios --with-nagios-group=nagcmd --prefix=/nagios<br>make && make install<br>
<br>chcon -R -t httpd_sys_content_t /nagios/sbin/<br>chcon -R -t httpd_sys_content_t /nagios/share/<br><br><br><br>Where is my problem???<br>