HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- iPlanet 4.1 SP11 problem
Operating System - HP-UX
1837533
Members
3556
Online
110117
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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-27-2003 09:13 PM
10-27-2003 09:13 PM
iPlanet 4.1 SP11 problem
My system Config: OS 11.00 QPK Sep 2003/
L - Class/2 Proc/2GB Memory/ iPlanet 4.1 SP11 and we us https 128bit encryption.
Problem:
Some times I get this error " could not fork new process" and I just restart the web server instance, the problem goes away. But again it repeats after few days. Below is the exact error information.
I tuned the kernel, my current kernel settings are:
STRMSGSZ 65535
dbc_max_pct 20
max_thread_proc 900
maxfiles 1024
maxfiles_lim 2048
maxswapchunks 3000
maxuprc 6000
maxusers 3200
msgmax 32768
msgmnb 65535
msgmni (NPROC)
msgseg (MSGTQL*4)
msgssz 128
msgtql 7564
nflocks 8192
nkthread (((NPROC*5)/3)+16)
nproc (64+3*MAXUSERS)
nstrpty 60
nstrtel (MAXUSERS)
semmns (SEMMNI*2)
semmnu (SEMMNI/2)
semume 64
shmmax 0X08000000
shmmni 964
Exact error:
/43288422, cgieng_start_output reports: could not fork new process (exec() failure [Bad address])
[28/Oct/2003:17:09:10] catastrophe (28106): for host 203.126.126.250 trying to POST /cgi-bin/ocbcro/vpu/fortec
gi/43209036, cgieng_start_output reports: could not fork new process (exec() failure [Bad address])
[28/Oct/2003:17:09:16] catastrophe (28106): for host 203.125.52.137 trying to POST /cgi-bin/ocbcro/vpu/fortecg
i/43746715, cgieng_start_output reports: could not fork new process (exec() failure [Bad address])
[28/Oct/2003:17:09:24] catastrophe (28104): for host 202.42.186.172 trying to POST /cgi-bin/ocbcro/vpu/fortecg
i/43337936, cgieng_start_output reports: could not fork new process (exec() failure [Bad address])
.....................
....... etc...
Please adivce me if anybody had seen this problem before.
Thanks,
Sri
L - Class/2 Proc/2GB Memory/ iPlanet 4.1 SP11 and we us https 128bit encryption.
Problem:
Some times I get this error " could not fork new process" and I just restart the web server instance, the problem goes away. But again it repeats after few days. Below is the exact error information.
I tuned the kernel, my current kernel settings are:
STRMSGSZ 65535
dbc_max_pct 20
max_thread_proc 900
maxfiles 1024
maxfiles_lim 2048
maxswapchunks 3000
maxuprc 6000
maxusers 3200
msgmax 32768
msgmnb 65535
msgmni (NPROC)
msgseg (MSGTQL*4)
msgssz 128
msgtql 7564
nflocks 8192
nkthread (((NPROC*5)/3)+16)
nproc (64+3*MAXUSERS)
nstrpty 60
nstrtel (MAXUSERS)
semmns (SEMMNI*2)
semmnu (SEMMNI/2)
semume 64
shmmax 0X08000000
shmmni 964
Exact error:
/43288422, cgieng_start_output reports: could not fork new process (exec() failure [Bad address])
[28/Oct/2003:17:09:10] catastrophe (28106): for host 203.126.126.250 trying to POST /cgi-bin/ocbcro/vpu/fortec
gi/43209036, cgieng_start_output reports: could not fork new process (exec() failure [Bad address])
[28/Oct/2003:17:09:16] catastrophe (28106): for host 203.125.52.137 trying to POST /cgi-bin/ocbcro/vpu/fortecg
i/43746715, cgieng_start_output reports: could not fork new process (exec() failure [Bad address])
[28/Oct/2003:17:09:24] catastrophe (28104): for host 202.42.186.172 trying to POST /cgi-bin/ocbcro/vpu/fortecg
i/43337936, cgieng_start_output reports: could not fork new process (exec() failure [Bad address])
.....................
....... etc...
Please adivce me if anybody had seen this problem before.
Thanks,
Sri
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2003 09:28 PM
10-27-2003 09:28 PM
Re: iPlanet 4.1 SP11 problem
Next time before shutting down the web server, take a look at your process list to see if anything is hanging.
It seems it wants to start CGI processes which fail. So it could be, for instance, that your CGI scripts/programs are not finishing, meaning they stay in the process list, which results in to many processes.
Try a 'ps -u | wc -l' where you put the username under which your iplanet processes run and see if the result of this is high (at the moment it won't work, it should be around 6000!)
Another reason could be a memory leak, meaning the iPlanet processes don't free memory allocated during the running. Just today someone posted a script to calculate the memory usage of a users processes.
It seems it wants to start CGI processes which fail. So it could be, for instance, that your CGI scripts/programs are not finishing, meaning they stay in the process list, which results in to many processes.
Try a 'ps -u
Another reason could be a memory leak, meaning the iPlanet processes don't free memory allocated during the running. Just today someone posted a script to calculate the memory usage of a users processes.
Every problem has at least one solution. Only some solutions are harder to find.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2003 09:38 PM
10-27-2003 09:38 PM
Re: iPlanet 4.1 SP11 problem
Hi Elmar,
Thanks for your reply. Surprisingly system health looks fine when the problem happens. CPU utilisation is very normal, and ps - u |wc -l is less than 50, which is fine I guess. Syslog doesn't have any strange errors either.
Sri
Thanks for your reply. Surprisingly system health looks fine when the problem happens. CPU utilisation is very normal, and ps - u
Sri
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP