Hp-ux 11.11 Pa-risc
Ad Widget
Collapse
How obtain pre-compiled agent 1.4 for HP-UX?
Collapse
X
-
Why?Originally posted by troniteGood luck man, don't think it exists.
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
-
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.Originally posted by den_craneWhy?
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
...
Once again good luck.Comment
-
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
TomComment
Comment