Page 1 of 1
What is latest version supported on Centos 7?
Posted: Tue May 13, 2025 3:53 pm
by rpike
At the moment I cannot upgrade the OS on my Nagios XI VM, so cannot upgrade to the latest XI.
What is latest version supported on Centos 7 and where I can I download it?
Re: What is latest version supported on Centos 7?
Posted: Tue May 13, 2025 4:48 pm
by bbahn
Hello @rpike,
There's a nice graph here:
https://support.nagios.com/kb/article/n ... -1045.html
Looks like XI R1.1.5 is the latest version compatible with CentOS 7. You may still run into a package hosting issue, though, where you can't source the packages you need since the CentOS 7 package repos are no longer serving. In that case, you would need to run an offline install.
Re: What is latest version supported on Centos 7?
Posted: Wed May 14, 2025 10:10 am
by rpike
Thank you.
I had found that chart and was able to perform the upgrade after changing the
CentOS-Base.repo in
/etc/yum.repos.d/ to point to centos-vault as follows.
I had been on 1.0 and had to upgrade because I broke the
Operation Center component because it did not stop me from upgrading it to an incompatible version. I figured going forward was better than trying to revert the component upgrade.
Code: Select all
$ rcsdiff CentOS-Base.repo
===================================================================
RCS file: RCS/CentOS-Base.repo,v
retrieving revision 1.1
diff -r1.1 CentOS-Base.repo
15,16c15,16
< mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra
< #baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
---
> #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra
> baseurl=https://archive.kernel.org/centos-vault/7.9.2009/os/$basearch/
23,24c23,24
< mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates&infra=$infra
< #baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
---
> #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates&infra=$infra
> baseurl=https://archive.kernel.org/centos-vault/7.9.2009/updates/$basearch/
31,32c31,32
< mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras&infra=$infra
< #baseurl=http://mirror.centos.org/centos/$releasever/extras/$basearch/
---
> #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras&infra=$infra
> baseurl=https://archive.kernel.org/centos-vault/7.9.2009/extras/$basearch/
39,40c39,40
< mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus&infra=$infra
< #baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/
---
> #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus&infra=$infra
> baseurl=https://archive.kernel.org/centos-vault/7.9.2009/centosplus/$basearch/
Re: What is latest version supported on Centos 7?
Posted: Wed May 14, 2025 10:30 am
by bbahn
Glad to hear it! Let us know if you need anything in the future.