- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- max number of processes in red hat
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
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
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-21-2003 11:44 PM
тАО10-21-2003 11:44 PM
I think the equivalency of the HPUX parameter nproc in red-hat is .kernel/threads-max. Can anyone tell me if is this correct or not??
Regards,
R.O.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-22-2003 12:35 AM
тАО10-22-2003 12:35 AM
Re: max number of processes in red hat
A thread in linux executes kernel function, a process execute kernel function using systems
calls.
a thread only run in kernel mode
process run in user or kernel mode
cat /proc/sys/kernel/threads-max
will tell you the current/running number of threads
have look in at
/usr/src/linux-2.4.20-20.9/include/linux/threads.h
so I do not think it is strictly the same
Often databases ask that this be increased
Hope this helps
J-P
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-22-2003 12:55 AM
тАО10-22-2003 12:55 AM
Re: max number of processes in red hat
So what is the kernel parameter that establish the max number of processes in linux?
Regards,
R.O.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-22-2003 01:22 AM
тАО10-22-2003 01:22 AM
Re: max number of processes in red hat
like RLIMIT_NPROC "limit process that user can owne"
There are many other RLIMIT_*, like memory lock, etc ..
But there is no process max limit at the kernel level that I am awared of !
well the amount of memory is the limit, but kernel param ! not that I know !
I am no expert, just trying to fit all the pieces myself, but dus far I have not found the exact match to nproc in Linux kernel.
J-P
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-22-2003 01:28 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-22-2003 01:40 AM
тАО10-22-2003 01:40 AM
Re: max number of processes in red hat
- kernel.threads-max (man sysctl for more)
- nproc - max number of processes per user (/etc/security/linits.comf)
regards,
Vitaly
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-25-2003 11:34 PM
тАО10-25-2003 11:34 PM
Re: max number of processes in red hat
http://linuxperf.nl.linux.org/general/kerneltuning.html
found this to be very good ! thanks to Shelstraete Bart for this
The pointer nearly same subject new forum message is
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=239333
J-P