You don't have permission to access /nagios/ on this server
解决:
chmod 777 nagios
http://IP/nagios
出现欢迎界面
1、
其实这种错误就是提示你没有权限访问nagios这项服务。造成这种报错的原因有多种,可能是文件权限你没有改成777,也可能是你httpd.conf这个配置文件有问题等,但还有一个问题是你想不到的。就是系统环境,注意访问nagios页面,这个nagios页面需要php支持。如果你没有安装php也会提示:You don't have permission to access /nagios/ on this server这个错误的。yum -y install php 。
OK这样就能访问nagios页面了。
2、
1.安装nagios的主机意外重启了,发现启动nagios正常 但是访问时却报如下错误
You don't have permission to access /nagios/ on this server.
在网上搜了搜 大概都是说php没有安装或正确配置,在有就是权限
但是安装nagios的路径/usr/local/nagios 权限 php也正确安装了 apache也没有发现问题
最后发现是selinux 于是 setenforce 0 就正常了
因为机器重启 selinux 默认是enforing 手动设置避免重启后再变回来 可以编辑/etc/selinux/config
3、
rpm -Uvh php-5.1.6-23.2.el5_3.x86_64.rpm php-cli-5.1.6-23.2.el5_3.x86_64.rpm php-common-5.1.6-23.2.el5_3.x86_64.rpm gmp-4.1.4-10.el5.x86_64.rpm
apachectl stop
apachectl start
问题解决
2. nrpe 启动不起来
因为nrpe 用的5666端口 netstat -anp|grep 5666
发现xinetd 已经占用了 于是关闭xinetd 在启动就ok了
问题很多种解决方案,根据自己的情况改吧!
赠送:
在Centos系统下安装nagios最后http访问可能出现这种报错:“You don't have permission to access /nagios/ on this server”,如下:
这种错误就是提示你没有权限访问nagios这项服务
造成这种报错的原因有多种:
1.可能是文件权限你没有改成777
2.可能是你httpd.conf这个配置文件有问题等
3.就是系统环境,注意访问nagios页面,这个nagios页面需要php支持。如果你没有安装php也会提
示:You don't have permission to access /nagios/ on this server这个错误的。
我这里就是因为没有安装php导致的,yum安装一下php就行了。
yum -y install php
OK,这样就能访问nagios页面了