My system is centos 6 32-bit
When installing zabbix-server, you will find that you want to install the dependency package, as shown in the screenshot.
Packages to be dependent on: OpenIPMI-libs, fping, iksemel, net-snmp, unixODBC, zabbix-server-implementation
Use yum to install the dependency.
Yum install-y OpenIPMI-libs
The package is not found when fping is installed with yum, as shown in the figure below.
Installing other dependency packages is the same.
Install the epel package first.
Download Address: https://dl.fedoraproject.org/pub/epel/6/i386/
Then install the epel package with rpm
Rpm-ivh epel-release-6-8.noarch.rpm
The installation package epel can use yum to install the above fping and other dependent packages.
At this time, when you install the zabbix-server package, you find that there is another dependency on zabbix-server-implementation, as shown in the figure below.
Yum installation failed. This package cannot be found in google. This problem is not solved for the time being. Skip the installation of this package.
So I want to install the zabbix-server-mysql package first. Here there is also dependency, as shown in the figure
Install libmysqlclient. so.16 in yum mode, but isn't the dependency package of zabbix-server the package that fails to be installed above?
So I figured out whether zabbix-server and zabbix-server-mysql are mutually dependent, so I installed
Rpm-ivh zabbix-server-mysql-2.4.3-1.el6.i686.rpm zabbix-server-2.4.3-1.el6.i686.rpm
Installation successful
This problem was also solved during tests at home yesterday.