温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

解答zabbix在configure时候遇到的问题(CentOS)

发布时间:2020-07-13 21:21:17 来源:网络 阅读:616 作者:boy461205160 栏目:MySQL数据库

zabbix在configure时候遇到的问题(CentOS)为你解答:

在CentOS系统中,安装zabbix进行configure时会遇到以下4个主要问题

./configure --enable-server --enable-agent --with-mysql --with-net-snmp --with-jabber --with-libcurl

1 configure: error: MySQL library not found

the problem is not installed mysql-devel

#yum install mysql-devel   

2 configure: error: Jabber library not found

the problem is not installed jabber lib

#wget http://iksemel.googlecode.com/files/iksemel-1.4.tar.gz

下载完成后解压、配置、安装:

tar zxvf iksemel-1.4.tar.gz   cd iksemel-1.4   configure   make   make install

之后对zabbix进行configure还是会遇到这个问题,那么将jabber目录指定即可:#./configure --enable-server --enable-agent --with-mysql --with-net-snmp --with-jabber=/usr/local/ --with-libcurl

3 configure: error: Not found curl Library

#yum install curl-devel (此项未经测试)

4 configure: error : Not found NET-SNMP library

yum install net-snmp-devel


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI