- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How my HP-UX system utilize the RAM installed?
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-2005 01:28 AM
01-28-2005 01:28 AM
How my HP-UX system utilize the RAM installed?
Thanks
I have upgraded my HP-UX system at 2.0 GB
the SAM Utility and cstm reporting the correct installation of RAM.
the TOP utility reporting the following information:
Memory:674700K(variableK) real, 312776 (variableK) virtual, 28196K free.
The report is correct? the utilization of memory is comprehensive of new RAM?
My memory free (variable) remaining extremely low.
Help me.
Thanks
Loi Luca
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2005 01:32 AM
01-28-2005 01:32 AM
Re: How my HP-UX system utilize the RAM installed?
Answer: both are correct based on how they were designed.
Run: swapinfo -tam
You will see swap allocation.
vmstat will let you know if you are paging to swap.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2005 02:22 AM
01-28-2005 02:22 AM
Re: How my HP-UX system utilize the RAM installed?
The memory between parenthesis is the current active. You can compare this top info. with the SAM info. (SAM -> Performance Monitors -> System Properties -> Memory)
About vmstat, explore the -dnS options:
#vmstat -dnS 5 100
Best Regards,
Eric Antunes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2005 02:39 AM
01-28-2005 02:39 AM
Re: How my HP-UX system utilize the RAM installed?
Thanks you Steven
My really problem is the connection with server in ODBC mode with a DBMS Oracle by multiple clients.
The probles NOT IN Oracle (unlimited license).
My observation of activity server have this result:
IF the result of the memory free with TOP utility > 10400Kb connection successful
IF the result < 10400Kb (memory free) conncection failed.
The size of single process allocated by application is 4000/8000 Kb
the result of swapinfo -tam in this moment (server in low activity and 28846kb free at TOP utility) is:
TYPE AVAIL USED FREE USED LIMIT RESERVE
dev 2048 0 2048 0%
Reserve - 1600 -1600
memory 1508 955 553 63%
total 3556 2555 1001 72%
The result of Vmstat -dnS 5 100 is (in this moment):
minimum
avm free
17000 7128
maximum
avm free
21000 7128
Thanks you very much
Luca Loi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2005 04:29 AM
01-28-2005 04:29 AM
Re: How my HP-UX system utilize the RAM installed?
If you want have another view, try compiling the following c program called memdetail
Output like:
# memdetail
Memory Stat total used avail %used
physical 10080.0 9809.6 270.4 97%
active virtual 11309.4 4779.4 6530.0 42%
active real 7361.7 2971.1 4390.6 40%
memory swap 7693.0 1546.9 6146.0 20%
device swap 26528.0 10890.6 15637.4 41%
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2005 04:35 AM
01-28-2005 04:35 AM
Re: How my HP-UX system utilize the RAM installed?
Maybe this link from itrc would help you dig deeper into the cause of memory usage.
http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000076088045
The itrc doc id is KBRC00011764.
hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2005 05:06 AM
01-28-2005 05:06 AM
Re: How my HP-UX system utilize the RAM installed?
It's not just the program's data area (local memory), but shared memory. Oracle (and other middleware programs) use shared memory that has similar limitations as a 32bit program. Use the command: ipcs -bmop
This will tell you how many segments are in use and what size they are. If the list is long, you probably have shared memory segments that have become 'orphans', especially if you use the (dreaded) kill -9 command. A reboot will fix this problem. It's quite difficult to determine whether a shared memory segment can be removed. Also, shared memory is always subject to fragmentation where there are many small chunks but no big chunks. If a program wants a big chunk, it will get a memory error because the contigous section of memory is not available.
Bill Hassell, sysadmin