博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
zabbix在configure时候遇到的问题
阅读量:6247 次
发布时间:2019-06-22

本文共 865 字,大约阅读时间需要 2 分钟。

zabbixconfigure时候遇到的问题(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

 
  1. #yum install mysql-devel  
  2.  

2 configure: error: Jabber library not found

the problem is not installed jabber lib

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

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

 
  1. tar zxvf iksemel-1.4.tar.gz  
  2.  
  3. cd iksemel-1.4  
  4.  
  5. configure  
  6.  
  7. make  
  8.  
  9. make install  
  10.  

之后对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

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

4 configure: error : Not found NET-SNMP library

 
  1. yum install net-snmp-devel  
  2.  

看完上面四点是不是一起也遇到相同的问题,那就按上的办法解决吧!

转载地址:http://tolia.baihongyu.com/

你可能感兴趣的文章
ArcGIS Server中的各种服务
查看>>
HIVE: Transform应用实例
查看>>
Some examples about how to write anonymous method and lambda expression
查看>>
linux下可以禁用的一些服务
查看>>
aria2的下载配置
查看>>
C++扬帆远航——14(求两个数的最大公约数)
查看>>
django-blog-zinna搭建个人blog
查看>>
as3 文本竖排效果实现
查看>>
Window下Eclipse+Tomcat远程调试
查看>>
夜间模式的开启与关闭,父模板的制作
查看>>
2016/4/19
查看>>
计算一元二次方程的根
查看>>
队列和栈
查看>>
升级了U3D引擎一下,苦逼了...
查看>>
Javascript中封装window.open解决不兼容问题
查看>>
100%会用到的angularjs的知识点【新手可mark】
查看>>
Alinq学习日志
查看>>
根据框架的dtd或xsd生成xml文件
查看>>
LeetCode Notes_#3 Longest Substring Without Repeating Characters
查看>>
MVP MVVM MVC
查看>>