Ad Widget

Collapse

How obtain pre-compiled agent 1.4 for HP-UX?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • den_crane
    Senior Member
    • Feb 2006
    • 272

    #1

    How obtain pre-compiled agent 1.4 for HP-UX?

    Hp-ux 11.11 Pa-risc
  • tronite
    Senior Member
    • Jun 2007
    • 147

    #2
    Originally posted by den_crane
    Hp-ux 11.11 Pa-risc
    Good luck man, don't think it exists.

    Comment

    • den_crane
      Senior Member
      • Feb 2006
      • 272

      #3
      Originally posted by tronite
      Good luck man, don't think it exists.
      Why?

      ZABBIX 1.4.2 released http://www.zabbix.com/forum/showthread.php?t=7325

      ...
      ZABBIX Agents

      ZABBIX Agents have been compiled and tested on the following platforms:

      * AIX 5.2
      * FreeBSD 4.11, 5.4
      * HP-UX 11.00
      * Linux 2.6.11 (Ubuntu)
      * Linux 2.6.15 (Ubuntu)
      * Linux CentOS
      * NetBSD 2.0
      * OS/X 10.2
      * Solaris 10
      * Tru64 5.1B
      * Windows XP
      ...

      Comment

      • tronite
        Senior Member
        • Jun 2007
        • 147

        #4
        Originally posted by den_crane
        Why?

        ZABBIX 1.4.2 released http://www.zabbix.com/forum/showthread.php?t=7325

        ...
        ZABBIX Agents

        ZABBIX Agents have been compiled and tested on the following platforms:

        * AIX 5.2
        * FreeBSD 4.11, 5.4
        * HP-UX 11.00
        * Linux 2.6.11 (Ubuntu)
        * Linux 2.6.15 (Ubuntu)
        * Linux CentOS
        * NetBSD 2.0
        * OS/X 10.2
        * Solaris 10
        * Tru64 5.1B
        * Windows XP
        ...
        Whilst this might be true I have not found one that is pre-compiled to your specific needs? Although this is not to say it does not exist, just maybe not officially released anywhere, but your best bet in getting closer to finding it is getting on the HP-UX 11.00 mailing list and asking around there, maybe someone has a working compile. Also I think in you ask Alexei nicely he might be able to send it to you as they have tested a compile on your HP-UX 11.00.

        Once again good luck.

        Comment

        • olexat
          Member
          • Feb 2007
          • 30

          #5
          HP-UX 11.23 compilation

          Hello there,

          I was successful in compiling both agent and server on HPUX 11.23 (aka 11v2).

          Itanium 2, gcc 4.2.1:
          ./configure issues some errors about sys/sysinfo.h

          hack:
          after ./configure, delete the following line in include/config.h in zabbix source directory:
          #define HAVE_SYS_SYSINFO_H 1

          now the compiler doesn't use the sys/sysinfo.h. It should contain things for monitoring kernel, processes etc., but these parameters are not supported by agent under HPUX due to differences from other UNIXes.

          The same hack allowed me to compile the server. Remember to install the ixMySQL package from hp first.


          PA risc U9000/800, gcc 3.4.3:
          ./configure issued some errors about: pthread, sys/sem.h, sys/ipc.h, sys/shm.h
          it comes from incorrect sys/types.h

          So use gcc's .h files, but hp's sys/types.h:

          cp -R /usr/local/lib/gcc/hppa2.0.2-hp-hpux-11.11/3.4.3/include /home/zabbix
          cp /usr/include/sys/types.h /home/zabbix

          teach gcc/cpp to use it:
          export CPPFLAGS='-isystem /home/zabbix'

          run ./configure --enable-agent again!

          I can share the binaries, if desired.

          Good luck
          Tom

          Comment

          • mikkello
            Junior Member
            • Jun 2007
            • 8

            #6
            I really could use a v1.4.2 zabbix_agentd for HP-UX 11.11. I am currently using v1.1.1, but I need log-items supporting regexp.

            Comment

            Working...