3

I am trying to install a Zabbix monitoring system on my Ubuntu. But when I try to install it. I get this error:

The following have unmet dependencies:
 zabbix-server-mysql : Depends: libsnmp15 (>= 5.4.3~dfsg) but it is no installable
                       Reccomends snmptt but it is not going to be installed
Unable to correct problems, you have held broken packages.

I already tried:

apt-get update -f
apt-get install snmpd -f

but nothing seems to work, anyone has a solution for me? Thanks

Black Magic
  • 131
  • 1
  • 6

2 Answers2

0

Starting from a stock Ubuntu 12.04.3 LTS install, Zabbix can be installed in the following way:

From the Zabbix 2.2 documentation:

wget http://repo.zabbix.com/zabbix/2.2/ubuntu/pool/main/z/zabbix-release/zabbix-release_2.2-1+precise_all.deb
dpkg -i zabbix-release_2.2-1+precise_all.deb
apt-get update

then, to install the server and web frontend:

apt-get install zabbix-server-mysql zabbix-frontend-php

to install the Zabbix agent only:

apt-get install zabbix-agent
Scot
  • 123
0

at first delete zabbix.list

sudo rm /etc/apt/sources.list.d/zabbix.list

and then run commands from in documentation (Answer Y or I when you run dpkg -i .....):

# wget http://repo.zabbix.com/zabbix/2.2/ubuntu/pool/main/z/zabbix-release/zabbix-release_2.2-1+precise_all.deb
# sudo dpkg -i zabbix-release_2.2-1+precise_all.deb
# sudo apt-get update