Ad Widget

Collapse

Upgrade Problem from 4.0.15 to 4.4

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sammsoft
    Junior Member
    • Jan 2020
    • 5

    #1

    Upgrade Problem from 4.0.15 to 4.4

    I have a zabbix installation on a raspberry pi with the raspbian OS version: Raspbian GNU/Linux 9 (stretch).
    For the database I use mysql for the web part I use apache. I use this documentation for the upgrade: https://www.zabbix.com/documentation.../debian_ubuntu

    on the point: Then install the new repository configuration package.
    # wget https://repo.zabbix.com/zabbix/4.4/d...tretch_all.deb # dpkg -i zabbix-release_4.4-1+stretch_all.deb all seems to be good, but I never receive this file:
    /etc/apt/sources.list.d/zabbix.list So If I try to upgrade with the commands:
    # apt-get install --only-upgrade zabbix-server-mysql zabbix-frontend-php zabbix-agent nothing happens. root@raspioffice:/etc/apt/sources.list.d# apt-get install --only-upgrade zabbix-server-mysql zabbix-frontend-php zabbix-agent

    Paketlisten werden gelesen... Fertig Abhängigkeitsbaum wird aufgebaut. Statusinformationen werden eingelesen.... Fertig

    zabbix-server-mysql ist schon die neueste Version (1:4.0.15-1+stretch).
    zabbix-agent ist schon die neueste Version (1:4.0.15-1+stretch).
    zabbix-frontend-php ist schon die neueste Version (1:4.0.15-1+stretch).
    Die folgenden Pakete wurden automatisch installiert und werden nicht mehr benötigt: coinor-libipopt1v5 libmumps-seq-4.10.0 libraw15 realpath Verwenden Sie »sudo apt autoremove«, um sie zu entfernen. 0 aktualisiert, 0 neu installiert, 0 zu entfernen und 0 nicht aktualisiert.

    What I'm doing wrong? Thanks for helping.
    Last edited by sammsoft; 17-01-2020, 11:23.
  • Atsushi
    Senior Member
    • Aug 2013
    • 2028

    #2
    Did you update the apt database after upgrading the zabbix-release package?

    ex.
    $ sudo apt update

    Comment

    • sammsoft
      Junior Member
      • Jan 2020
      • 5

      #3
      Yes I did the apt-get update. But it does not change anything.

      Comment

      • Markku
        Senior Member
        Zabbix Certified SpecialistZabbix Certified ProfessionalZabbix Certified Expert
        • Sep 2018
        • 1782

        #4
        Hi, do note that for Raspbian there are different packages. See https://www.zabbix.com/download?zabb...ysql&ws=apache: the release package is in different path.

        Markku

        Comment

        • sammsoft
          Junior Member
          • Jan 2020
          • 5

          #5
          Thank you Markku for that post. It helped me :-)
          You have right. I took the right source and it worx!

          Comment

          • sammsoft
            Junior Member
            • Jan 2020
            • 5

            #6
            Now I have the same problem in the company with installed Ubuntu 18.04.3 LTS (Bionic). I use the following Source from Zabbix repository:

            # wget https://repo.zabbix.com/zabbix/4.4/u...bionic_all.deb
            # dpkg -i zabbix-release_4.4-1+bionic_all.deb

            After that I'm doing the apt-get update.
            After that I continue with the only upgrade of the packages:

            # apt-get install --only-upgrade zabbix-server-mysql zabbix-frontend-php zabbix-agent

            But the message says: already the newest version -> 1:4.0.14-1+bionic

            What is the problem on the ubuntu side? Thanks for helping me. I love zabbix :-)

            ps: i used this documentation: https://www.zabbix.com/documentation.../debian_ubuntu
            my current zabbix-version on the server is: 4.0.14
            Last edited by sammsoft; 20-01-2020, 09:22.

            Comment

            • Atsushi
              Senior Member
              • Aug 2013
              • 2028

              #7
              In the environment where Zabbix 4.0.16 is installed on Ubuntu 18.04.3, it has been confirmed that it can be upgraded to 4.4.4 by the following procedure.

              Code:
              $ sudo dpkg -i zabbix-release_4.4-1+bionic_all.deb
              $ sudo apt update
              $ apt list --upgradable
              Listing... Done
              zabbix-agent/unknown 1:4.4.4-1+bionic amd64 [upgradable from: 1:4.0.16-1+bionic]
              zabbix-frontend-php/unknown 1:4.4.4-1+bionic all [upgradable from: 1:4.0.16-1+bionic]
              zabbix-server-mysql/unknown 1:4.4.4-1+bionic amd64 [upgradable from: 1:4.0.16-1+bionic]
              $ sudo apt-get install --only-upgrade zabbix-server-mysql zabbix-frontend-php zabbix-agent
              $ dpkg -l | grep zabbix
              ii  zabbix-agent                          1:4.4.4-1+bionic                                amd64        Zabbix network monitoring solution - agent
              ii  zabbix-frontend-php                   1:4.4.4-1+bionic                                all          Zabbix network monitoring solution - PHP front-end
              ii  zabbix-release                        1:4.4-1+bionic                                  all          Zabbix official repository configuration
              ii  zabbix-server-mysql                   1:4.4.4-1+bionic                                amd64        Zabbix network monitoring solution - server (MySQL)
              $
              What is the architecture of the environment you are using? Zabbix official repository only supports two architectures: i386 and amd64 (x86_64). Also check if any warnings were issued when executing the apt command.

              Comment

              • sammsoft
                Junior Member
                • Jan 2020
                • 5

                #8
                my solution was: first I upgraded to Zabbix Server 4.2.x.
                after that the Upgrade to 4.4.4 worked fine.

                Thank you for your answer Atsushi!

                Comment

                Working...