Looking through the message boards I found a couple of topics on migrating from 6 to 7 or 7.2 to 7.3 on a RHEL 7 box.
https://support.nagios.com/forum/viewto ... 16&t=62425
For the same security reasons we need to update from 7.2 to 7.4 on our xi server and our Mod Gearman workers all of which are RHEL 8.4. I wanted to double check would the process I use be the same as in the link above just replacing remi-php73 with remi-php74?
Nagios xi PHP 7.2 to 7.4
-
- Posts: 1253
- Joined: Tue Mar 02, 2021 11:15 am
Re: Nagios xi PHP 7.2 to 7.4
Hi
The process is similar, however you'll want to enable the repo for PHP 7.4 and disable the repo for PHP 7.3
sudo yum-config-manager --disable remi-php73
sudo yum-config-manager --enable remi-php74
Thanks
The process is similar, however you'll want to enable the repo for PHP 7.4 and disable the repo for PHP 7.3
sudo yum-config-manager --disable remi-php73
sudo yum-config-manager --enable remi-php74
Thanks
-
- Posts: 103
- Joined: Wed Aug 05, 2020 11:39 am
Re: Nagios xi PHP 7.2 to 7.4
About what I expected then that's good. Thank you!