- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: which kernel parameter should be modified?
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-23-2006 11:56 AM
03-23-2006 11:56 AM
which kernel parameter should be modified?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 12:02 PM
03-23-2006 12:02 PM
Re: which kernel parameter should be modified?
The 'maxuproc' parameter controls the maxiumum number of processes per user.
On a system-wide basis, 'nproc' sets the upper ceiling for the number of processes on a system.
You can learn more here:
http://www.docs.hp.com/en/TKP-90202/index.html
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 03:24 PM
03-23-2006 03:24 PM
Re: which kernel parameter should be modified?
Its maxuprc , that controls Maximum process per user. Also check for nproc parameter. It depends on maxuprc. Hope above posting of JRF is a typo.
To see current value of maxuprc :
# kmtune -q maxuprc
Cheers,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 03:26 PM
03-23-2006 03:26 PM
Re: which kernel parameter should be modified?
Check this two parameters :
maxuprc and nproc , and increase them accordingly :
----------
maxuprc : maximum number of process that any single user can have running at the same time.
nproc: Defines the maximum number of process that can be running simultaneously on the entire system.
---------------
Cheers,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 03:35 PM
03-23-2006 03:35 PM
Re: which kernel parameter should be modified?
Real time data can be gathered as follows.
For user - ps -u "user_name" | wc -l
Do that for every user and check maxuprc setting.
For nproc, real time data can be gathered as follows.
glance -t
sar -v 1 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 04:10 PM
03-23-2006 04:10 PM
Re: which kernel parameter should be modified?
before you make your change, note that you can also dynamically monitor your kernel parameter values for:
Proc Table (nproc)
File Table (nfile)
Shared Mem Table (shmmn
Message Table (msgmni)
Semaphore Table (semmni
File Locks (nflocks)
Pseudo Terminals (npty)
Buffer Headers (nbuf)
using glance in SYSTEM TABLES REPORT
Note that this parameter change will also affect other parameters which are dependent on it. Please check in SAM.
hope this helps!
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 04:46 PM
03-23-2006 04:46 PM
Re: which kernel parameter should be modified?
# kmtune -q nproc -l
# kmtune -q maxuprc -l
will give details. Tune then kmtune or sam.
--
Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 10:11 PM
03-23-2006 10:11 PM
Re: which kernel parameter should be modified?
Hi,
once you decide the required value,
run
#kmtune -s
and reboot the server to apply the changes.
Regards,
Siva.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2006 02:50 AM
03-24-2006 02:50 AM
Re: which kernel parameter should be modified?
For updating maxuprc you don't have to reboot it's dynamic if you're in 11i, you just have to do this :
kmtune -s maxuprc=
kmtune -u (To update kernel)
kmtune -q maxuprc (To control)
If you don't do kmtune -u it stays at planned state.
What I use to do is to have the parameter nproc 2 or 3 times maxuprc, because if you have an application which lost head the others are still happy. I hope it's a good practice. :-)
Regards
Pat