zabbix编译安装时遇到的各种奇葩问题,罗列出来。

1、no acceptable C compiler found in $PATHSee `config.log' for more details....缺少C编译器,可以安装一个gcc,

error:mysqlcilent library
error: MYSQL library not find安装mysql-devel
error: Curl library not found
安装libcurl-devel
Invalid NET-SNMP directory - unable to find net-snmp-config
安装: net-snmp  net-snmp-devel

2、make 的时候报错

CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /home/me/src/sipp/sipp/missing aclocal-1.14 
/home/me/src/sipp/sipp/missing: line 81: aclocal-1.14: command not found
WARNING: 'aclocal-1.14' is missing on your system.
         You should only need it if you modified 'acinclude.m4' or
         'configure.ac' or m4 files included by 'configure.ac'.
         The 'aclocal' program is part of the GNU Automake package:
         <http://www.gnu.org/software/automake>
         It also requires GNU Autoconf, GNU m4 and Perl in order to run:
         <http://www.gnu.org/software/autoconf>
         <http://www.gnu.org/software/m4/>
         <http://www.perl.org/>
make: *** [aclocal.m4] Error 127

执行命令:autoreconf -ivf 后便正常。来自:https://github.com/SIPp/sipp/issues/61

你可能感兴趣的:(zabbix,zabbix常见错误,zabbix源码安装)