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
Nagios xi Fresh Install on RHEL 8
-
- Posts: 903
- Joined: Tue Oct 27, 2020 1:35 pm
Re: Nagios xi Fresh Install on RHEL 8
Hi emartine,
Looks like yum can not find "graphviz-gd" package.
Please try the followings:
Now please try to manually install "graphviz-gd":
Regards,
Vinh
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"
Code: Select all
# dnf install graphviz-gd
or
# yum install graphviz-gd
Vinh