NagVis / nagvis

Visualization addon for your open source monitoring core

Home Page:http://nagvis.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error access nagvis Redhat

gildasiosousa opened this issue · comments

I did installation by ./install.sh but I can't access nagvis to Redhat 8.
But present 403 error
Forbidden
You don't have permission to access this resource.
Error log httpd:
[Wed Jan 19 14:07:10.085106 2022] [authz_core:error] [pid 1176149:tid 140031888971520] [client 192.168.22.45:62262] AH01630: client denied by server configuration: /nagvis/nagvis/share/frontend/nagvis-js/index.php

Configuration executed with PHP 7.4

commented

Is SELINUX enabled?

Thanks! by help T100D, but SELINUX is disabled.

I managed to solve.
install multiple versions of PHP php56, and php72

dnf install -y https://rpms.remirepo.net/enterprise/remi-release-8.rpm
dnf makecache
dnf install -y php56 php56-php-fpm
dnf install php56*
dnf install php56* --skip-broken --nobest
cat > /var/www/cgi-bin/php56.fcgi << EOF
#!/bin/bash
exec /bin/php56-cgi
EOF
chmod 755 /var/www/cgi-bin/php*