zabbix3.x安装出现“configure: error: Not found mysqlclient library”的解决办法

如题所示,在CentOS6.x的系统中安装zabbix3.x,使用了以下的编译命令:

1
./configure --prefix=/usr/local/zabbix --enable-server --enable-agent --with-mysql --enable-ipv6 --with-net-snmp --with-libcurl --with-libxml2

在编译时,可能会出现题目中所示的错误,可以通过安装mysql-devel这个库解决:

1
[root@localhost zabbix-3.0.3]# yum install mysql-devel

注:如果出现“configure: error : Not found NET-SNMP library”,那么可以安装“net-snmp-devel”来解决:

1
[root@localhost zabbix-3.0.3]#yum install net-snmp-devel

如果还缺少其他的库,也可以根据这种思路来安装上即可



本文转自 pangfc 51CTO博客,原文链接:http://blog.51cto.com/983836259/1840760,如需转载请自行联系原作者

上一篇:Postman接口测试之管理用例Collections


下一篇:安装rrdtool时候的报错configure: error: Please fix the library issues listed above and try again.