Search code examples
zabbix

Default, building parameters for Zabbix


I want to install zabbix (server and java-gateway) 3.2 from sources (needed to patch something). What are default parameters that i should use with ./configure command so it would be same as installing using packages ?


Solution

  • Something like this:

    --enable-server --enable-java --enable-ipv6 --with-jabber --with-libxml2 --with-unixodbc --with-net-snmp --with-ssh2 --with-openipmi --with-ldap --with-libcurl
    

    For encryption, choose one of --with-mbedtls, --with-gnutls or --with-openssl.

    Also add one for the database used, like --with-mysql.

    Note that you will need quite a lot of development packages.