Ad Widget

Collapse

zabbix install dependencies 5.0.4

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • darfie21
    Junior Member
    • May 2015
    • 5

    #1

    zabbix install dependencies 5.0.4

    I'm trying to a fresh install of zabbix 5.0 on centos 8. When I attempt to install package zabbix-web-mysql-5.0.4-1.el8.noarch.rpm I get this error:

    [root@zabbix ~]# rpm -iv zabbix-web-mysql-5.0.4-1.el8.noarch.rpm
    warning: zabbix-web-mysql-5.0.4-1.el8.noarch.rpm: Header V4 RSA/SHA512 Signature, key ID a14fe591: NOKEY
    error: Failed dependencies:
    zabbix-web-deps = 5.0.4-1.el8 is needed by zabbix-web-mysql-5.0.4-1.el8.noarch

    When I try to install the dependency zabbix-web-deps I get this error:

    # rpm -iv zabbix-web-deps-5.0.4-1.el8.x86_64.rpm
    warning: zabbix-web-deps-5.0.4-1.el8.x86_64.rpm: Header V4 RSA/SHA512 Signature, key ID a14fe591: NOKEY
    error: Failed dependencies:
    zabbix-web-database = 5.0.4-1.el8 is needed by zabbix-web-deps-5.0.4-1.el8.x86_64

    I cant install either package as they seem to be asking for each other. What am I doing wrong ?

    I currently have these package installed:

    zabbix-server-mysql-5.0.4-1.el8.x86_64
    zabbix-web-5.0.4-1.el8.noarch


  • tim.mooney
    Senior Member
    • Dec 2012
    • 1427

    #2
    Don't use rpm directly. Use yum or dnf.

    Install them in a single transaction, rather than one by one.

    Comment

    • ZaBeast
      Member
      • Sep 2019
      • 42

      #3
      Are you using the official Zabbix installation guide?

      You can this guide: https://bestmonitoringtools.com/how-...entos-or-rhel/

      It has more details and information.

      Comment

      • Atsushi
        Senior Member
        • Aug 2013
        • 2028

        #4
        I also recommend using the official repositories and using the dnf command to install.
        When installing dependent packages with the rpm command, try to install the dependent packages side by side as arguments.

        ex.
        Code:
        # rpm -iv zabbix-web-mysql-5.0.4-1.el8.noarch.rpm zabbix-web-deps-5.0.4-1.el8.x86_64.rpm

        Comment

        Working...