Ad Widget

Collapse

Install zabbix proxy in REL5

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • fefouy
    Junior Member
    • Jun 2015
    • 3

    #1

    Install zabbix proxy in REL5

    Dear all,
    Im trying to install zabbix proxy in Redhat Enterprise 5 using rpm packages
    But im getting the following error:

    $ rpm -i zabbix-proxy-2.4.5-1.el5.x86_64.rpm

    warning: zabbix-proxy-2.4.5-1.el5.x86_64.rpm: Header V4 DSA signature: NOKEY, key ID 79ea5ed4

    error: Failed dependencies:
    zabbix-proxy-implementation = 2.4.5-1.el5 is needed by zabbix-proxy-2.4.5-1.el5.x86_64


    $ rpm -qa | grep zabbix
    zabbix-2.4.5-1.el5

    Appreciate your comments
  • jan.garaj
    Senior Member
    Zabbix Certified Specialist
    • Jan 2010
    • 506

    #2
    Install zabbix repo and then install proxy:
    Code:
    yum install -y http://repo.zabbix.com/zabbix/2.4/rhel/5/x86_64/zabbix-release-2.4-1.el5.noarch.rpm
    yum install zabbix-proxy
    Devops Monitoring Expert advice: Dockerize/automate/monitor all the things.
    My DevOps stack: Docker / Kubernetes / Mesos / ECS / Terraform / Elasticsearch / Zabbix / Grafana / Puppet / Ansible / Vagrant

    Comment

    • Atsushi
      Senior Member
      • Aug 2013
      • 2028

      #3
      Please install the package at the same time to match the database that you want to use.

      ex.
      MySQL:
      # rpm -i zabbix-proxy-2.4.5-1.el5.x86_64.rpm zabbix-proxy-mysql-2.4.5-1.el5.x86_64.rpm

      PostgreSQL:
      # rpm -i zabbix-proxy-2.4.5-1.el5.x86_64.rpm zabbix-proxy-pgsql-2.4.5-1.el5.x86_64.rpm

      Comment

      Working...