Ad Widget

Collapse

Ubuntu Server 10.04.03 Install Issue

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Legatus72
    Junior Member
    • Jul 2009
    • 2

    #1

    Ubuntu Server 10.04.03 Install Issue

    Ok, I have read the forums but with a new version and on the release notes it states: Zabbix Server has been tested on the following platforms:

    Ubuntu Linux, AMD64, kernel 2.6.11, MySQL 5.x
    Ubuntu Linux, Intel, kernel 2.6.15, MySQL 5.0.22, PostgreSQL 8.3
    RedHat EL 5.3, Intel, kernel 2.6.18, Oracle 11gR2

    I downloaded the latest to one of my 10.04.03 servers. I receive the following error when you attempt to configure with jabber and libcurl:

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

    checking for IKSEMEL... no
    configure: error: Jabber library not found

    sudo aptitude search jabber reveals:

    i jabberd2
    i A libjabberd2
    i libjabberd2-dev

    Or do we need to compile both jabber and libcurl from source?
  • candidinho
    Junior Member
    • Jul 2011
    • 6

    #2
    You have to install iksemel manually.

    Download the souce code from: http://code.google.com/p/iksemel/

    And type this into a terminal:
    cd iksemel
    ./configure --prefix=/usr
    make
    make check
    make install

    I have this problem today and this solve it.

    Comment

    • harmonica
      Senior Member
      • Jan 2009
      • 251

      #3
      Hello,

      Try sudo apt-get install libiksemel-dev

      Comment

      • Legatus72
        Junior Member
        • Jul 2009
        • 2

        #4
        I tried Download the souce code from: http://code.google.com/p/iksemel/

        And type this into a terminal:
        cd iksemel
        ./configure --prefix=/usr
        make
        make check
        make install

        But it errored but I did a search today and within the cook book I found a package list from an install of an earlier version.

        gcc
        libmysql++-dev
        libcurl4-gnutls-dev
        snmp
        libsnmp-dev
        php5-gd

        Now I thought I have installed anything to do with Curl or dev curl but it was these two packages that the depencies I needed.

        libmysql++-dev
        libcurl4-gnutls-dev

        Comment

        Working...