Ad Widget

Collapse

Upgrade from 6.0 LTS to 6.4

Collapse
This topic has been answered.
X
X
 
  • Time
  • Show
Clear All
new posts
  • jgalea
    Junior Member
    • Feb 2022
    • 10

    #1

    Upgrade from 6.0 LTS to 6.4

    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.
  • Answer selected by cyber at 29-11-2023, 17:30.
    solution
    Senior Member
    • Jun 2020
    • 269

    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:
    Code:
    yum repolist all | grep mysql
    - Disable AppStream Repo and install mysql:
    Code:
    sudo yum ––disablerepo=AppStream install –y mysql-community-server
    - After installing, activate the AppStream repo:
    Code:
    sudo yum ––enablerepo=AppStream
    Wellington​

    Comment

    • solution
      Senior Member
      • Jun 2020
      • 269

      #2
      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:
      Code:
      yum repolist all | grep mysql
      - Disable AppStream Repo and install mysql:
      Code:
      sudo yum ––disablerepo=AppStream install –y mysql-community-server
      - After installing, activate the AppStream repo:
      Code:
      sudo yum ––enablerepo=AppStream
      Wellington​

      Comment

      • jgalea
        Junior Member
        • Feb 2022
        • 10

        #3
        Ill give that a whirl and report back thank you "Solution"

        Comment

        • jgalea
          Junior Member
          • Feb 2022
          • 10

          #4
          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

          Working...