- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- compilation problem on unix system
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2006 04:47 AM
04-21-2006 04:47 AM
Unsatisfied symbol "rfc931_timeout" in file /usr/lib/hpux32/libwrap.so
this is my makefile:
###############################
# Makefile for NRPE
#
# Last Modified: 10-14-2003
###############################
# Source code directories
SRC_INCLUDE=../include
CC=gcc
CFLAGS=-g -O2 -I/usr/include/openssl -I/usr/include -DHAVE_CONFIG_H
LDFLAGS= -L/usr/lib -lssl -lcrypto
SOCKETLIBS= -lnsl
LIBWRAPLIBS= -lwrap
OTHERLIBS= -liberty
CP=@CP@
all: nrpe check_nrpe
nrpe: nrpe.c utils.c $(SRC_INCLUDE)/nrpe.h $(SRC_INCLUDE)/utils.h $(SRC_INCLUDE)/common.h $(SRC_INCLUDE)/config.h
$(CC) $(CFLAGS) -o $@ nrpe.c utils.c $(LDFLAGS) $(SOCKETLIBS) $(LIBWRAPLIBS) $(OTHERLIBS)
check_nrpe: check_nrpe.c utils.c $(SRC_INCLUDE)/utils.h $(SRC_INCLUDE)/common.h $(SRC_INCLUDE)/config.h
$(CC) $(CFLAGS) -o $@ check_nrpe.c utils.c $(LDFLAGS) $(SOCKETLIBS) $(OTHERLIBS)
clean:
rm -f core nrpe check_nrpe
rm -f *~ */*~
distclean: clean
rm -f Makefile
devclean: distclean
###############################
I 'd like to compile also on hp-ux 11.00 but i need ssl library . Where can i find openSSL for hp-ux 11.00? I have searched on software hp site but I found only depot for 11.11
Any ideas for my two questions?
thanks in advance
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2006 10:03 PM
04-23-2006 10:03 PM
Re: compilation problem on unix system
you may have to compile from source.
http://www.openssl.org/
But this thread may help:
http://forums1.itrc.hp.com/service/forums/bizsupport/questionanswer.do?threadId=879615
HP11.00 support ends Dec this year, so a lot of people have upgradef or are ungrading.
http://www.hp.com/softwarereleases/releases-media2/history/slide2.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2006 01:11 AM
04-24-2006 01:11 AM
Re: compilation problem on unix system
OpenSSL is part of the HP-UX OE release.
So if you've got an installation CD or the application DVD you will find it there.
(please refer to TOC on CD/DVD).
You can also download it for free
as it is part of HP's Internet Express repository
http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXIEXP1123
Afaik, it used to be built with gcc so then you should be able to link with gcc aginst the depot libs.
But recently HP seem to have relinquished gcc and instead built with their own compiler.
The README.hp in the depot should tell how the libs and binaries were built.
The depot even includes the source tarball,
but just for "reference" as it says in the depot's README.
If you need to build the binaries yourself you'd better get the sources from openssl.org
However, if you have no need for TLS/SSL checks of your NRPE then there's no need for OpenSSL at all.
I for instance have some HP-UX NRPE nodes operational that since I don't have to run checks with SSL lack SSL support but apart from that work perfectly well.
If I remember correctly you can configure nrpe with --disable-ssl or similar.
Just have a look at ./configure --help for the correct options.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2006 10:49 AM
04-24-2006 10:49 AM
Re: compilation problem on unix system
Also make sure that you are using the latest version of GCC you can get for your platform, and make sure that you are also using gnu make (as opposed to the make supplied by HP).
The error you are seeing is related to username lookups. There's a wealth of information on the Net covering what it is and does.
If I get chnace I'll try and find out which header file its in tomorrow (I'm sure I compiled NRPE on 11.23 IA).
Col
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2006 12:36 PM
04-24-2006 12:36 PM
Re: compilation problem on unix system
http://mirrors.develooper.com/hpux/downloads.html
http://mirrors.develooper.com/hpux/openssl-0.9.7i-11.00.sd.bz
http://mirrors.develooper.com/hpux/openssl-0.9.8a-11.00.sd.bz
http://mirrors.develooper.com/hpux/openssh-4.2p1-11.00.sd.bz
http://mirrors.develooper.com/hpux/openssl-0.9.8a-11.11.sd.bz
http://mirrors.develooper.com/hpux/openssh-4.2p1-11.11.sd.bz
Enjoy, Have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2006 08:31 PM
04-24-2006 08:31 PM
Re: compilation problem on unix system
I've compiled NRPE 2.2 on 11.23 PA and IA. If you're desparate I can probably provide depots for you.
I'm afraid i can't help with an 11.00 build though. We don't have that around here ;-)
Col.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2006 03:54 AM
04-27-2006 03:54 AM
Re: compilation problem on unix system
I'm desperate, I'd like to have precompiled for nrpe.
thanks to all for support.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2006 04:59 AM
04-28-2006 04:59 AM
Re: compilation problem on unix system
There is a pre-compiled version here; found in another thread on this forum:
http://www.bennyvision.com/projects/nagios/index.php
Good luck, I am helping a peer admin who is in your same situation.
"Edited to comply with ITRC Guidelines"
BTW: have you considered giving points to the answers/solutions people are providing you? I don't think I have any yet; HELP!
Thanks,
Kirk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2006 08:51 AM
04-28-2006 08:51 AM
Re: compilation problem on unix system
Kirk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2006 09:17 PM
05-09-2006 09:17 PM
Re: compilation problem on unix system
Can help me?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2006 09:21 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2006 02:33 AM
05-10-2006 02:33 AM
Re: compilation problem on unix system
Bye