- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Max Limit of # of Child Processes
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
тАО09-24-2008 08:15 PM
тАО09-24-2008 08:15 PM
Max Limit of # of Child Processes
We have Itanium Server with HP-UX 11i V3 OS. One of our listener process keeps forking as soon as it receives any request from outside world. This process was working fine on HP PA-RISC box but when we migrated it to Itanium Server with HP-UX 11i V3, it started failing after creating 30,000 child processes.
I would like to know whether there is any Kernel Parameter defined to limit the MAX # of child processes, one parent process can create ? If yes, how to read and change the value of that parameter ?
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-24-2008 08:31 PM
тАО09-24-2008 08:31 PM
Re: Max Limit of # of Child Processes
You are limited by: maxuprc
Maximum number of processes for each non-root user
And of course the total: nproc
Maximum number of processes on the system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-24-2008 09:36 PM
тАО09-24-2008 09:36 PM
Re: Max Limit of # of Child Processes
maxuprc - limits the maximum number of concurrent user processes per user
Default value is 256
Redommended value is also 256
nproc - limits the number of processes allowed to exist simultaneously
Defualt value is 4200
Allowed values is 100 - 30000
I think better you change these two values then try
Suraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-25-2008 06:55 AM
тАО09-25-2008 06:55 AM
Re: Max Limit of # of Child Processes
I would like to check the values for nproc and maxuprc parameters on our server. What command do I need to use ?
Thanks for your help !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-25-2008 07:04 AM
тАО09-25-2008 07:04 AM
Re: Max Limit of # of Child Processes
Probably wouldn't hurt to also do "man nproc" and "man maxuprc" for more information and discussions on the effects of modifying these tunables (all tunables on v2 and later have man pages if they weren't explicitly removed from the system in the man5 section).