Page 1 of 1

More rrdtool issues upgrading from 1.5 to 1.6.1

Posted: Thu Jul 23, 2026 1:02 pm
by clangbecker
Upgrade to current version is failing due to rrdtool issues. Any light that can be shed on this?

Error:
Problem: conflicting requests
- nothing provides python3-rrdtool needed by nagiosxi-deps-el8-2026r1.6.1-1.noarch from @commandline
- nothing provides rrdtool-devel needed by nagiosxi-deps-el8-2026r1.6.1-1.noarch from @commandline
(try to add '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages)

pip3 install rrdtool
Defaulting to user installation because normal site-packages is not writeable
Requirement already satisfied: rrdtool in /usr/local/lib64/python3.12/site-packages (0.1.16)

Re: More rrdtool issues upgrading from 1.5 to 1.6.1

Posted: Thu Jul 23, 2026 10:44 pm
by kg2857
Figure out what packages contain python3-rrdtool and rrdtool-devel and make them available to your software install utility.

Re: More rrdtool issues upgrading from 1.5 to 1.6.1

Posted: Fri Jul 24, 2026 10:23 am
by cdietsch
Hi @clangbecker,

It sounds maybe the CRB repo is not enabled on your system for some reason. Try running the following command to see if the repo is enabled:

Code: Select all

dnf repolist | grep -Ei 'crb|codeready|powertools'
If nothing is returned, the repository is not configured or not available on the system.

Depending on what OS you are running (RHEL, Oracle) you may need to run one of the following commands to enable the repo:

(RHEL 8)

Code: Select all

subscription-manager repos --enable codeready-builder-for-rhel-8-x86_64-rpms
(Oracle 8)

Code: Select all

dnf config-manager --set-enabled ol8_codeready_builder
Then try running the upgrade script again.