Page 1 of 1

Nagios XI Fresh Install on RHEL 8

Posted: Fri Jan 22, 2021 7:18 pm
by emartine
I am installing NagiosXI on RHEL 8:

Red Hat Enterprise Linux release 8.2 (Ootpa)

Fresh install from scratch and I am running into a problem trying to download and find the package graphiz-gd.

Error:
Problem: conflicting requests
- nothing provides graphviz-gd needed by nagiosxi-deps-el8-5.8.1-1.noarch



No match for argument: graphviz-gd
Error: Unable to find a match: graphviz-gd


I am following these install instructions. Please advise.

https://assets.nagios.com/downloads/nag ... -Linux.pdf

Re: Nagios XI Fresh Install on RHEL 8

Posted: Mon Jan 25, 2021 2:13 pm
by vtrac
Hi emartine,
Looks like yum can not find "graphviz-gd" package.

Please try the followings:

Code: Select all

# yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm

(CentOS 8.x)
# dnf config-manager --set-enabled PowerTools

(redhat 8.x)
# subscription-manager repos --enable "codeready-builder-for-rhel-8-x86_64-rpms"
Now please try to manually install "graphviz-gd":

Code: Select all

# dnf install graphviz-gd
or
# yum install graphviz-gd
Regards,
Vinh