- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: system free memory in hpux 11.11
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-09-2005 03:16 AM
03-09-2005 03:16 AM
can anyone help me with the following problem:
we have an application that runs on hpux 11.0 we are taking an upgrade of the application which runs on hpux 11.11 and have the problem that in testing the system free memory (L class 4 CPUS, 4GB RAM) decreases continuously under load testing on the 11.11 box.
the vendor says that this is normal behaviour, that none of their processes are using up (leaking) memory and that the memory is being used by hpux for disk buffer caches and will be released when there is not enough memory available.
we use top and hp openview mib to track the free memory.
is this a diferent behaviour of hpux from 11.0 to 11.11 ? we are testing at the moment, I am anxious to see what happens when we reach extremly low free memory, our vendow says that the system can run without any problems with just 4mb of free memory.
any comments welcome !
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2005 03:23 AM
03-09-2005 03:23 AM
Re: system free memory in hpux 11.11
Run following for considerable period and check, if memeory count goes on inceasing, it could be memeory leak problem. Also are you up to date on patches??
Run following throug cron.
UNIX95= ps -C "program_name" -o "pid,vzs,args" >> /tmp/mem.log
Check the file. Second column is memeory used by program.
Also there are commercial products to check if program has memeory leak or not. purifier is one of them.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2005 03:36 AM
03-09-2005 03:36 AM
SolutionGlance (even the Trial version) is really the tool of choice for nailing possible memory leaks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2005 10:17 PM
03-09-2005 10:17 PM
Re: system free memory in hpux 11.11
"The decrease of total free memory is normal behaviour of Unix system and it does not signal a problem" is the statement of our vendor but I cannot really believe this !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2005 02:28 AM
03-10-2005 02:28 AM
Re: system free memory in hpux 11.11
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2005 02:41 AM
03-10-2005 02:41 AM
Re: system free memory in hpux 11.11
Well-written code using dynamic memory will typically grow quickly, then grow more slowly, and finally stop growing as equilibrium is reached. I should point out that in almost all cases, the memory free'ed isn't returned to the OS but rather goes onto the process'es heap for subsequent reuse.