Ad Widget

Collapse

Zabbix 3.4 on x86 system -> rpm-error

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • waterproof
    Junior Member
    • May 2017
    • 6

    #1

    Zabbix 3.4 on x86 system -> rpm-error

    Hi,
    I wanted to install Zabbix-Server on a Eebox B202, which only has a 32 Bit processor. So I installed Cent OS 7 (i386).
    When I try to install Zabbix Server 3.4 by using the command:

    "rpm -ivh http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-2.el7.noarch.rpm"

    and

    "yum install zabbix-server-mysql zabbix-web-mysql zabbix-agent zabbix-java-gateway mariadb-server",

    I only get the following error:

    "Geladene Plugins: fastestmirror, langpacks
    http://repo.zabbix.com/zabbix/3.2/rh...ta/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
    Anderer Spiegelserver wird versucht

    ....

    failure: repodata/repomd.xml from zabbix: [Errno 256] No more mirrors to try.
    http://repo.zabbix.com/zabbix/3.2/rh...ta/repomd.xml: [Errno 14] HTTP Error 404 - Not Found"



    Obviously, the folder "http://repo.zabbix.com/zabbix/3.2/rhel/7/i386" is missing. What can I do?

    Thanks a lot!
    waterproof
  • tutunak
    Member
    • Mar 2016
    • 32

    #2
    Because of this path http://repo.zabbix.com/zabbix/3.2/rh...ta/repomd.xml: don't available on the server. Zabbix since 3.2 support only x86_64

    Comment

    • kaspars.mednis
      Senior Member
      Zabbix Certified Trainer
      Zabbix Certified SpecialistZabbix Certified Professional
      • Oct 2017
      • 349

      #3
      You can compile zabbix_server from sources. I have done it for test purposes, and zabbix server compiles nicely on CentOS7 i386

      Code:
      [root@centos7i386 zabbix-3.4.4]# zabbix_server -V
      zabbix_server (Zabbix) 3.4.4
      Revision 74338 7 November 2017, compilation time: Nov 27 2017 14:52:29
      
      Copyright (C) 2017 Zabbix SIA
      License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.html>.
      This is free software: you are free to change and redistribute it according to
      the license. There is NO WARRANTY, to the extent permitted by law.
      [root@centos7i386 zabbix-3.4.4]# cat /etc/redhat-release 
      CentOS Linux release 7.4.1708 (AltArch) 
      [root@centos7i386 zabbix-3.4.4]# 
      root@centos7i386 zabbix-3.4.4]# uname -a
      Linux centos7i386 3.10.0-693.5.2.el7.centos.plus.i686 #1 SMP Mon Oct 23 13:28:04 UTC 2017 i686 i686 i386 GNU/Linux
      You can download it here
      https://www.zabbix.com/download (sources section)

      You can compile with:

      Code:
       ./configure --enable-server --enable-agent --with-mysql  --with-net-snmp --with-libcurl --with-libxml2
      some prerequisites:

      Code:
      yum install gcc
      yum install mariadb-devel
      yum install libxml2-devel
      yum install net-snmp-devel
      yum install libevent-devel
      yum install curl-devel
      Manuals are here:




      Its a little more complex than install from packages, but that can be accomplished quite easy

      feel free to ask more questions,
      Kaspars

      Comment

      • volter
        Member
        Zabbix Certified Specialist
        • Dec 2011
        • 85

        #4
        For better results, I suggest to rebuild their RPMs instead (potentially on a different, more powerful host with mock): http://zabbix.org/wiki/Docs/howto/rebuild_rpms

        Comment

        Working...