- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Memory Utilisation is high
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-28-2007 09:27 PM
10-28-2007 09:27 PM
Memory Utilisation is high
I am using rp3440 server with OS HP-UX 11.11.In this server the Memory utilisation is at 100%.I checked the swap uitilisation but its 28% only.I hv 4gb of physical memory.I dont know Why its not using the swap space fully.Any settings for reducing memory utilisation ?.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2007 09:34 PM
10-28-2007 09:34 PM
Re: Memory Utilisation is high
Please run top tool to find out which process utilize your memory
You can also submit top output
Best Regards
Murat
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2007 09:35 PM
10-28-2007 09:35 PM
Re: Memory Utilisation is high
It is probabaly the buffer cache, which by default is set to 50%. You can reduce this by changing the kernel parameter dbc_max_pct from 50 to something smaller.
Mike.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2007 10:22 PM
10-28-2007 10:22 PM
Re: Memory Utilisation is high
This is a GOOD thing.
>I don't know why its not using the swap space fully.
Using swapspace is a bad thing. (I'm assuming that the amount of swapspace is more than your 4 Gb.)
As Mike said, it is probably the buffer cache.
What is the output of "swapinfo -tam"?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2007 10:22 PM
10-28-2007 10:22 PM
Re: Memory Utilisation is high
hi Raj,
mike is right. Check dbc_max_pct what is the value, if it is 50 default, do consider to reduce to 20.
Swap space would not utilize because your memory is sufficient, which is good!
WK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2007 10:48 PM
10-28-2007 10:48 PM
Re: Memory Utilisation is high
UNIX95=1 ps -e -o vsz,pid,ruser,args | sort -rn
mathmad.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2007 10:49 PM
10-28-2007 10:49 PM
Re: Memory Utilisation is high
Here I pasted the kernel parameter for the buffer cache.
kmtune | grep dbc
dbc_max_pct 8 - 8
dbc_min_pct 5 - 5
Can u help me on this ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2007 12:28 PM
10-29-2007 12:28 PM
Re: Memory Utilisation is high
Now as Dennis mentioned previously, using swapspace is a bad thing. It means that you have used all your memory and processes are being deactivated and paged out to make room for more processes. HP-UX is a virtual memory design and you can continue adding more processes as long as you have swap space. But the performance will be awful. Almost no work will get done while all the processes are fighting for memory so they can run.
There are two solutions:
1. Do not run as many processes at the same time,
2. double the amount of memory you have installed
The second choice will greatly improve performance on your system as swap usage will now be 0%.
Bill Hassell, sysadmin