- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: errors in hp apache 2.0.53 on hpux
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
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
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
тАО10-12-2005 04:50 AM
тАО10-12-2005 04:50 AM
We are running hp apache 2.0.53 on hpux.
We are seeing the below mentioned errors in the error log of hp apache:
[Fri Oct 07 11:05:23 2005] [warn] child process 14863 still did not exit, sending a SIGTERM
[Fri Oct 07 11:05:23 2005] [warn] child process 14864 still did not exit, sending a SIGTERM
[Fri Oct 07 11:05:23 2005] [warn] child process 14865 still did not exit, sending a SIGTERM
[Fri Oct 07 11:05:23 2005] [notice] caught SIGTERM, shutting down
-----
[Fri Oct 07 11:46:49 2005] [error] Init: Failed to generate temporary 1024 bit RSA private key
[Fri Oct 07 11:46:52 2005] [error] Init: Failed to generate temporary 512 bit RSA private key
Appreciate if anyone can suggest some workaround.
Thanks,
Shiv
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-12-2005 11:31 AM
тАО10-12-2005 11:31 AM
Re: errors in hp apache 2.0.53 on hpux
Do You have HP-UX KRNG installed?
Florian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-12-2005 01:36 PM
тАО10-12-2005 01:36 PM
Re: errors in hp apache 2.0.53 on hpux
Is the rng module loaded?
kmadmin -S
look for rng to be loaded, also verify that the major# returned by kmadmin matches the major# of /dev/random and /dev/urandom. If rng is loaded but major# doesn't match /dev/random, recreate /dev/random and urandom w/ the matching major number from the loaded rng mod.
hope this helps,
-denver
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-12-2005 03:39 PM
тАО10-12-2005 03:39 PM
Re: errors in hp apache 2.0.53 on hpux
HP's SRNG installed and configured properly ? Or do you have PRNGD installed on your server ?
http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=KRNG11I
http://hpux.connect.org.uk/hppd/hpux/Maths/Misc/prngd-0.9.29/
or you can install OpenSSL for 11.11, it has got PRNGD part of the bundle..
http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=OPENSSL11I
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-12-2005 03:53 PM
тАО10-12-2005 03:53 PM
SolutionCryptographic software needs a source of unpredictable data to work correctly. Many open source operating systems provide a "randomness device" that serves this purpose (usually named /dev/random). On other systems, applications have to seed the OpenSSL Pseudo Random Number Generator (PRNG) manually with appropriate data before generating keys or performing public key encryption. As of version 0.9.5, the OpenSSL functions that need randomness report an error if the PRNG has not been seeded with at least 128 bits of randomness. So mod_ssl has to provide enough entropy to the PRNG to work correctly. For this one has to use the SSLRandomSeed directives
The solution:
================================
Open etc/ssl.conf in your favourite text editor.
Find the following lines:
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
Cut&Paste these line to the very begining of the file.
(above the line
Please let me know what is your finding.
Regards,
Syam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-12-2005 03:58 PM
тАО10-12-2005 03:58 PM
Re: errors in hp apache 2.0.53 on hpux
Regards,
Syam