Compile Error with Zabbix 5.2 source code #15
Answered
by
i-ky
antonievonk
asked this question in
Q&A
-
Compile error on Centos 8.2 with zabbix source code version 5.2
|
Beta Was this translation helpful? Give feedback.
Answered by
i-ky
Nov 20, 2020
Replies: 1 comment
-
Hi @antonievonk! These errors are very surprising. Are you following compilation instructions? Please make sure that all steps complete without errors. I had to do some wrestling, but I managed to compile module with Zabbix 5.2 on CentOS 8 using Docker. Here is what I did: docker run --rm --tty --interactive centos:8 yum install git
git clone https://git.zabbix.com/scm/zbx/zabbix.git --depth 1 --branch release/5.2 /path/to/zabbix/source
cd /path/to/zabbix/source
yum install automake gcc make
./bootstrap.sh
./configure
yum install libcurl-devel
yum --enablerepo=PowerTools install libyaml-devel
git clone https://github.com/i-ky/effluence --depth 1 /path/to/effluence/source
cd /path/to/effluence/source
export ZABBIX_SOURCE=/path/to/zabbix/source
make |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
i-ky
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @antonievonk!
These errors are very surprising. Are you following compilation instructions? Please make sure that all steps complete without errors.
I had to do some wrestling, but I managed to compile module with Zabbix 5.2 on CentOS 8 using Docker. Here is what I did: