- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Memory occupation
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
11-14-2005 03:26 AM
11-14-2005 03:26 AM
Memory occupation
i've a Superdome partion with:
24Gb memory available
3 swap device with 8Gb setted each one
swap_mem_on=1
shmax=17Gb
The output of the swapinfo -tam command is list below:
TYPE AVAIL USED FREE USED LIMIT RESERVE PRI NAME
dev 8388608 0 8388608 0% 0 - 1 /dev/vg00/lvswap1
dev 8388608 0 8388608 0% 0 - 1 /dev/vg00/lvswap2
dev 8192000 0 8192000 0% 0 - 1 /dev/vg00/lvswap3
reserve - 12642076 -12642076
memory 19371168 3633000 15738168 19%
total 44340384 16275076 28065308 37% - 0 -
Now i've 74% of total memory busy, but if i run the "ps -efl" command and calcolate the SZ column for every process, the total is different to the 74% of memory occupation view throught the glance utility.
Which are the correct way to trace the memory occupation on the machine?
How can i find the list of the processes that are blocking the memory resources?
THKS A LOT
Best regards
Maurizio
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2005 03:36 AM
11-14-2005 03:36 AM
Re: Memory occupation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2005 03:55 AM
11-14-2005 03:55 AM
Re: Memory occupation
What A. Clay Stephenson is saying is perfectly correct.
But one thing I thought might be of help to you is - since you want to know list of processes that are blocking the memory resources - use the following command
UNIX95= ps -e -o "pid,ruser,vsz,args" | sort -nr -k 3 | more
which will show you the top memory user processes. Also if you total the 3rd field ,which is vsz , comes approx same as the used memory show in glance.
Regs,
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2005 05:26 AM
11-14-2005 05:26 AM
Re: Memory occupation
ps -e -o "pid,ruser,vsz,args" | sort -nr -k 3 | more
i've the same information displayed throught the ps -efl command.
The total memory pages on the hosts are 860680, and the size of a memory page is 4kb, so 860680*4= 3.4Gb that are very different to the 17Gb of memory occupation displayed on glance output.
What do you think about it???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2005 05:30 AM
11-14-2005 05:30 AM
Re: Memory occupation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2005 06:25 AM
11-14-2005 06:25 AM
Re: Memory occupation
If i look on the weblogic console, i see 256 Mb allocated on this process.
If i look the same process pid on glance, this process on the RSS columns has been allocated 2,5Gb.
I don't know which data is correct or not.
The weblogic memory limit is set on 512Mb, how this process can allocate 2,5Gb?
Thanks a lot and regards.
Maurizio