- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Reducing system memory utilization
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
01-28-2004 04:10 AM
01-28-2004 04:10 AM
Reducing system memory utilization
I have an rp2470 w/ 4GB of total memory that was staged from a golden image (11.11) of a much larger server (rp8400). As a result, the kernel is sized larger than it needs to be. System memory is 980MB (not including buffer cache).
What kernel parameters affect system memory usage the most? My first thought was nproc and nfile. Any other good suggestions? Attached is my kmtune output.
tia,
Frank
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2004 04:15 AM
01-28-2004 04:15 AM
Re: Reducing system memory utilization
(all will have a fairly small overhead)
maxdsiz, maxtsiz and maxssiz have an impact on the amount of memory that a single process can use (data segment, stack segment and text segment respectively) - a process can use any amount up to the limit imposed by these values.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2004 04:16 AM
01-28-2004 04:16 AM
Re: Reducing system memory utilization
My production server, tuned for database support and lots of users, only has a 13.8MB kernel. I don't think your efforts are going to bear much fruit. The plain and simple fact is that 980MB is going to be a tight squeeze for an 11i system. Anything under 2GB is tight!
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2004 04:17 AM
01-28-2004 04:17 AM
Re: Reducing system memory utilization
mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2004 04:20 AM
01-28-2004 04:20 AM
Re: Reducing system memory utilization
Thanks for the input. One question though...if your kernel is only 13.8MB how do you account for the rest of the system memory used?
Frank
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2004 04:38 AM
01-28-2004 04:38 AM
Re: Reducing system memory utilization
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2004 04:45 AM
01-28-2004 04:45 AM
Re: Reducing system memory utilization
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2004 04:50 AM
01-28-2004 04:50 AM
Re: Reducing system memory utilization
I may have misinterpreted your question. Kernel parameters can allow processes to grow without limits and you can and should have some limits on them (the others have pointed out the areas for you to look at). On the other hand, you don't want your system to end up being single-threaded because your constraints only allow one process at a time. Coming from that viewpoint, I thought maybe you were trying to shrink the actual size of your kernel - guess not, huh?!
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2004 04:55 AM
01-28-2004 04:55 AM
Re: Reducing system memory utilization
Size of the kernel doesn't have anything to do with how much it will consume.
During the run time, system will allocate memory dymanically and it may grow overtime. For ex., vx_ninode which is JFS inode cache.
I would be worried only if it is 100% used and there are paging outs happening.
-Sri