- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Post upgrade Kernel modifications
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
10-01-2006 02:11 AM
10-01-2006 02:11 AM
Post upgrade Kernel modifications
rp5470 was 3 x 875Mhz proc and 12Gb of RAM
now 4 x 857Mhz and 16Gb of RAM
rp7410 was 4 x 750Mhz proc and 8GB of RAM
now 8 x 750Mhz proc and 16Gb
Any suggestions for which Kernel parameters should be being tuned to make best use of this extra hardware
Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2006 08:18 AM
10-01-2006 08:18 AM
Re: Post upgrade Kernel modifications
http://docs.hp.com/en/TKP-90202/TKP-90202.pdf
This was recommended by HP:
kctune -B dbc_min_pct=1
kctune -B dbc_max_pct=1
but also have a look at the following:
vx_ninode, nproc, nkthread, nproc, maxuprc, maxssiz_64bit, maxssiz, maxuprc, msgtql, msgmap, msgseg, semmni, shmmni, vps_ceiling, ksi_alloc_max, msgmni, ncsize, semmns, semmnu.
At least you should max the shmmax to the memory 16*1024*1024*1024 - 20% = 13GB.
But all in all it depends on the application. and the after you take it live with the application monitor it with glance and tune it as you go.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2006 08:52 AM
10-01-2006 08:52 AM
Re: Post upgrade Kernel modifications
Look at increasing swap since you have doubled the memory on your rp7410. Only caveat is that swap needs to be contiguous. You'll have to take a look at your configuration to find out if this can be done with the exisitng disks or if you need to purchase disks bigger than the current.
~hope it helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2006 08:54 AM
10-01-2006 08:54 AM
Re: Post upgrade Kernel modifications
A setting of 1 (meaning 1 percent of RAM) would set a static buffer cache of 163 MB on a system with 16GB of RAM. That is woefully low.
I would probably set dbc_min_pct to 5 and dbc_max_pct to 10. This would give a minimum buffer cache size of 800MB and a maximum size of 1600MB.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2006 08:01 PM
10-01-2006 08:01 PM
Re: Post upgrade Kernel modifications
Maybe I'm being daft and revealing my inexperience but I've no idea why I'd need to increase swap on a machine that has doubled it's memory and that wasn't swapping out an alarming amount to start with. (You could ask at this point if it wasn't swapping out why add more memory, and you may well have a point)
As for application specific, the rp7410 and rp5470 are the database and apps tiers respectively of an Oracle E-Business Suite (11.5.10, OS is 11iv1.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2006 09:45 AM
10-02-2006 09:45 AM
Re: Post upgrade Kernel modifications
1) You need to have at least as much swap as you have RAM.
or
2) You need to set swapmemon=1 in the kernel (it requires a reboot if not set) and then have swap space equal to 25% of your RAM.
The reason for this is because when a process starts is reserves an amount of swap space just in case it needs it. If a process can't reserve the space it needs, then it will fail.