zabbix-3.4.14源码安装
Posted xll970105
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了zabbix-3.4.14源码安装相关的知识,希望对你有一定的参考价值。
此次介绍一下,zabbix的源码安装,因为zabbix的依赖很多,所以源码安装有很多依赖需要安装
首先,下载zabbix源码包
wget https://nchc.dl.sourceforge.net/project/zabbix/ZABBIX%20Latest%20Stable/3.4.14/zabbix-3.4.14.tar.gz
下载完成后,解压
tar xf zabbix-3.4.14.tar.gz -C /usr/local/src
进入zabbix解压后的目录
cd /usr/local/src/zabbix-3.4.14/
开始编译安装
./configure --enable-server --enable-agent --with-mysql --enable-ipv6 --with-net-snmp --with-libcurl --with-libxml2
此次编译过程中可能如出现如下错误
configure: error: MySQL library not found
解决办法
yum -y install mysql-devel
configure: error: LIBXML2 library not found
解决办法
yum -y install libxml2-devel
configure: error: Not found Net-SNMP library
解决办法
yum -y install net-snmp-devel
configure: error: Unable to use libevent (libevent check failed)
解决办法
yum -y install libevent-devel
configure: error: Curl library not found
解决办法
yum -y install curl-devel
configure: error: Invalid OPENIPMI directory - unable to find ipmiif.h
解决办法
yum -y install OpenIPMI-devel
然后 make && make install,可以通过命令 echo $? 判断是否安装完成。
以上是关于zabbix-3.4.14源码安装的主要内容,如果未能解决你的问题,请参考以下文章
Android 插件化VirtualApp 源码分析 ( 目前的 API 现状 | 安装应用源码分析 | 安装按钮执行的操作 | 返回到 HomeActivity 执行的操作 )(代码片段
Android 逆向类加载器 ClassLoader ( 类加载器源码简介 | BaseDexClassLoader | DexClassLoader | PathClassLoader )(代码片段
初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段
初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段