I've been using Zabbix 6.0 LTS for a while now and was looking to upgrade to 6.4 but have run into a road block I can't seem to get past. I'm running on CentOS8 X86. I've followed the official Zabbix upgrade documents but keep running into the same problem, mysql is sitting at "mysql Ver 8.0.26 for Linux on x86_64 (Source distribution)" which needs to be at last 8.0.30. I can't seem to figure out how to upgrade MySQl. Any help would be most appreciated, I really don't want to reload everything, I have oodles of time spent setting it up. I can get the upgrade to 6.2 working no problem, 6.2 is Ok with that version of MySQL.
Ad Widget
Collapse
Upgrade from 6.0 LTS to 6.4
Collapse
This topic has been answered.
X
X
-
Answer selected by cyber at 29-11-2023, 17:30.
You have installed from the AppStream Repo.
Try this:
- Stop all services or applications that need Mysql.
- Backup your database.
- Uninstall mysql
- Install Mysql Repo: https://dev.mysql.com/downloads/repo/yum/
- Check if the Repo was installed and is active:
- Disable AppStream Repo and install mysql:Code:yum repolist all | grep mysql
- After installing, activate the AppStream repo:Code:sudo yum ––disablerepo=AppStream install –y mysql-community-server
WellingtonCode:sudo yum ––enablerepo=AppStream
- Selected Answer
-
You have installed from the AppStream Repo.
Try this:
- Stop all services or applications that need Mysql.
- Backup your database.
- Uninstall mysql
- Install Mysql Repo: https://dev.mysql.com/downloads/repo/yum/
- Check if the Repo was installed and is active:
- Disable AppStream Repo and install mysql:Code:yum repolist all | grep mysql
- After installing, activate the AppStream repo:Code:sudo yum ––disablerepo=AppStream install –y mysql-community-server
WellingtonCode:sudo yum ––enablerepo=AppStream
- Selected Answer
Comment
-
So you were right, solution, that was the answer, it was pulling MySQL from the stream. I've documented the entire process I followed in case someone else runs into this issue. It's on my blog https://johngalea.wordpress.com/2023...ntos-8-stream/ Gentle comments are welcome.Comment
Comment