- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Runtime woes
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
03-28-2007 05:33 AM
03-28-2007 05:33 AM
Runtime woes
$ sudo bin/apachectl start
/usr/lib/dld.sl: Unresolved symbol: getaddrinfo (code) from /usr/local/httpd/lib/libapr-1.sl.2
/usr/lib/dld.sl: Unresolved symbol: getnameinfo (code) from /usr/local/httpd/lib/libapr-1.sl.2
/usr/lib/dld.sl: Unresolved symbol: freeaddrinfo (code) from /usr/local/httpd/lib/libapr-1.sl.2
/usr/lib/dld.sl: Unresolved symbol: gai_strerror (code) from /usr/local/httpd/lib/libapr-1.sl.2
bin/apachectl[80]: 25766 Abort(coredump)
Can anyone offer some insight?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2007 05:40 AM
03-28-2007 05:40 AM
Re: Runtime woes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2007 05:43 AM
03-28-2007 05:43 AM
Re: Runtime woes
/usr/lib/libc.2 => /usr/lib/libc.2
/usr/lib/libdld.2 => /usr/lib/libdld.2
/usr/lib/libc.2 => /usr/lib/libc.2
/usr/lib/libdld.2 => /usr/lib/libdld.2
/usr/lib/libpthread.1 => /usr/lib/libpthread.1
/usr/lib/libm.2 => /usr/lib/libm.2
/usr/local/httpd/lib/libapr-1.sl.2 => /usr/local/httpd/lib/libapr-1.sl.2
/usr/lib/libc.2 => /usr/lib/libc.2
/usr/lib/libdld.2 => /usr/lib/libdld.2
/usr/lib/libpthread.1 => /usr/lib/libpthread.1
/usr/lib/libm.2 => /usr/lib/libm.2
/usr/local/httpd/lib/libexpat.sl.1 => /usr/local/httpd/lib/libexpat.sl.1
/usr/lib/libc.2 => /usr/lib/libc.2
/usr/local/httpd/lib/libaprutil-1.sl.2 => /usr/local/httpd/lib/libaprutil-1.sl.2
/usr/lib/libc.2 => /usr/lib/libc.2
/usr/lib/libdld.2 => /usr/lib/libdld.2
/usr/lib/libpthread.1 => /usr/lib/libpthread.1
/usr/lib/libm.2 => /usr/lib/libm.2
/usr/local/httpd/lib/libapr-1.sl.2 => /usr/local/httpd/lib/libapr-1.sl.2
/usr/local/httpd/lib/libexpat.sl.1 => /usr/local/httpd/lib/libexpat.sl.1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2007 07:01 AM
03-28-2007 07:01 AM
Re: Runtime woes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2007 07:40 AM
03-28-2007 07:40 AM
Re: Runtime woes
A search of the forum for getaddrinfo should have told you this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2007 08:15 AM
03-28-2007 08:15 AM
Re: Runtime woes
A rather good way to find missing symbols is to nm a list of libraries into a text file that you can then search. This works across all flavors of UNIX where not all utilities are available.
For example,
cd /usr/lib/
nm lib* > /home/cstephen/nmlist
You can then search nmlist (using vi if you like) to help you hunt down symbols and the libraries that contain them.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2007 12:46 PM
03-28-2007 12:46 PM
Re: Runtime woes
>You can then search nmlist (using vi if you like) to help you hunt down symbols and the libraries that contain them.
If you are going to search, you should use "nm -pxAN", that will include the the filename and symbol in the same line.