Ad Widget

Collapse

proxy compile fails

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • v.q
    Junior Member
    • May 2013
    • 9

    #1

    proxy compile fails

    Hello,

    I try to compile zabbix proxy on Raspbian but it fails.

    From github sources I checkout tag 3.2.3, run bootstrap.sh and configure. All succeeds but make (without install) fails. Compiling an agent works fine.

    Code:
    ./bootstrap.sh
    Code:
    ./configure --enable-proxy --with-openssl --with-net-snmp --with-sqlite3 --with-ssh2 --with-openipmi --with-libcurl --with-libxml2 --sysconfdir=/etc/zabbix --datadir=/usr/share --datarootdir=/usr/share --libexecdir=/usr/libexec/ --bindir=/bin --sbindir=/sbin
    
    [...]
    
    Configuration:
    
      Detected OS:           linux-gnueabihf
      Install path:          /usr/local
      Compilation arch:      linux
    
      Compiler:              gcc
      Compiler flags:         -g -O2
    
      Library-specific flags:
        database:                  -I/usr/include
        libXML2:               -I/usr/include/libxml2
        Net-SNMP:               -I/usr/local/include -I/usr/lib/arm-linux-gnueabihf/perl/5.20/CORE -I. -I/usr/include
        OpenIPMI:              -I/usr/include
        libssh2:               -I/usr/include
        TLS:                   -I/usr/include
    
      Enable server:         no
    
      Enable proxy:          yes
      Proxy details:
        With database:         SQLite v3.x
        WEB Monitoring:        cURL
        SNMP:                  yes
        IPMI:                  yes
        SSH:                   yes
        TLS:                   OpenSSL
        ODBC:                  no
        Linker flags:               -L/usr/lib    -L/usr/lib/arm-linux-gnueabihf -L/usr/lib -L/usr/lib -L/usr/lib   -L/usr/lib/arm-linux-gnueabihf -rdynamic
        Libraries:                  -lsqlite3 -lxml2    -lnetsnmp -lssh2 -lOpenIPMI -lOpenIPMIposix -lssl -lcrypto   -lcurl -lm -ldl  -lresolv
    
      Enable agent:          no
    
      Enable Java gateway:   no
    
      LDAP support:          no
      IPv6 support:          no
    
    ***********************************************************
    *            Now run 'make install'                       *
    *                                                         *
    *            Thank you for using Zabbix!                  *
    *              <http://www.zabbix.com>                    *
    ***********************************************************
    Code:
    make
    
    [...]
    
    make[2]: *** [all-recursive] Error 1
    make[1]: *** [all-recursive] Error 1
    make: *** [all-recursive] Error 1
    Please help.

    Regards,
    Vitali
  • Atsushi
    Senior Member
    • Aug 2013
    • 2028

    #2
    Please check the output when executing make.
    A message should be output as to what was the error.

    You can also download the source of the release version in the tar.gz format from the download page.
    http://www.zabbix.com/download

    Comment

    • v.q
      Junior Member
      • May 2013
      • 9

      #3
      Thank you very much.

      Had to run "make dbschema" before running "make" or "make install".

      Comment

      Working...