- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How to see all each process 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
03-13-2006 10:05 PM
03-13-2006 10:05 PM
How to see all each process memory utilization
How to know each process which occupied how much memory utilization on HP-UX system ?
I need to know every process's memory utilization to separate each AP's memory utilization. thanks a lot !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2006 10:08 PM
03-13-2006 10:08 PM
Re: How to see all each process memory utilization
# UNIX95= ps -ef -o pid,comm,sz,vsz
--
Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2006 10:10 PM
03-13-2006 10:10 PM
Re: How to see all each process memory utilization
You can use UNIX95 variable,
UNIX95= ps -ef -o sz,vsz,pid,comm
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2006 10:10 PM
03-13-2006 10:10 PM
Re: How to see all each process memory utilization
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=956772
--
Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2006 10:12 PM
03-13-2006 10:12 PM
Re: How to see all each process memory utilization
Check this thread as well,
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1008114
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2006 10:34 PM
03-13-2006 10:34 PM
Re: How to see all each process memory utilization
Is possible use glance for separate memory consume for your aplications.
Is necessary configure file /var/opt/perf/parm.
See some samples in file /opt/perf/examples/ovpaconfig/parm_apps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2006 10:36 PM
03-13-2006 10:36 PM
Re: How to see all each process memory utilization
You can also use Glance to further drill down on the process.
hope this helps too!
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2006 12:32 AM
03-14-2006 12:32 AM
Re: How to see all each process memory utilization
There are tools here
ftp://eh:spear9@hprc.external.hp.com/memory.htm
For example:
Look at breakdown of memory usage, per process:
# ./procsize -fnc | more
pid Comm UAREA TEXT DATA STACK SHMEM IO MMAP Total
2916 getty v 4 5 6 4 0 0 349 369
2287 prm3d v 68 6 671 513 0 0 37212 38471
.
.
.
NOTE: numbers in the output of procsize are the number of 4K pages. So, mulitply by 4096 to get a byte count.
TRICK: Here's the command to use to sort by the 11th column (total memory usage)
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2006 02:51 AM
03-14-2006 02:51 AM
Re: How to see all each process memory utilization
ps -efl | more
then you get the sizex4mb.
Regards,
massimo