- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Tuning Kernel Parameters
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
12-02-2004 06:33 PM
12-02-2004 06:33 PM
Tuning Kernel Parameters
OS: HP-UX 11.00
I would like to tune the kernel parameter,
nkthread(((NPROC*7)/4)+16)to ((NPROC*7)+16)
ninode from ((NPROC+16+MAXUSERS)+32+(2*NPTY)) to (3*nproc+2048)
Query: Correct me if I am wrong is the kmtune format stated below correct?
kmtune -s nkthread=NPROC*7+16
kmtune -s ninode=3*nproc+2048
Do we just remove the bracket will do?
Need your advise?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2004 06:41 PM
12-02-2004 06:41 PM
Re: Tuning Kernel Parameters
I think it is just fine, but if want to be
sure about the expression evaluvation you
can execute the commands in the following
manner.
# kmtune -s nkthread="(NPROC*7)+16"
# kmtune -s ninode="(3*nproc)+2048"
HTH -vishwas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2004 06:59 PM
12-02-2004 06:59 PM
Re: Tuning Kernel Parameters
If for long expression eg
ninode:((NPROC+16+MAXUSERS)+32+(2*NPTY))
Will kmtune -s ninode=NPROC+16+MAXUSERS+32+2*NPTY
OR
As suggested kmtune -s ninode="((NPROC+16+MAXUSERS)+32+(2*NPTY))"
Need advise...thanks/cliff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2004 07:05 PM
12-02-2004 07:05 PM
Re: Tuning Kernel Parameters
me of course)
1. (your soln.)
# kmtune -s ninode="((NPROC+16+MAXUSERS)+32+(2*NPTY))"
2. My take.
# kmtune -s ninode=2*NPTY+NPROC+16+MAXUSERS+32
OR
# kmtune -s ninode="(2*NPTY)+NPROC+16+MAXUSERS+32"
See the re-ordered variables.
HTH - vishwas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2004 07:12 PM
12-02-2004 07:12 PM
Re: Tuning Kernel Parameters
#cp system build
(build is a directory under /stand)
#mk_kernel -o /stand/vmunix
#kmupdate
#cd /
#shutdown -r y now