errors under ubuntu
2009-12-08
./configure --enable-server --enable-agent --with-mysql --with-net-snmp --with-libcurl
here’s some errors i had while compiling zabbix on ubuntu 9.10 and how to fix them
| flag | --with-mysql |
| error | configure: error: MySQL library not found |
| fix | sudo apt-get install libmysqlclient-dev |
| flag | --with-jabber |
| error | checking for IKSEMEL... configure: error: Jabber library not found |
| fix | sudo apt-get install libiksemel-dev |
| flag | --with-libcurl |
| error | configure: error: Curl library not found |
| fix | sudo apt-get install libcurl4-openssl-dev |
| flag | --with-net-snmp |
| error | configure: error: Not found NET-SNMP library |
| fix | sudo apt-get install libsnmp-dev |
| flag | --with-openipmi |
| error | configure: error: Invalid OPENIPMI directory - unable to find ipmiif.h |
| fix | sudo apt-get install libopenipmi-dev 1 |
but I couldn’t get that last one to work↩︎