- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Memory Windows usage
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
04-03-2003 06:16 AM
04-03-2003 06:16 AM
For each memory window, I would like to sort users by their memory windows usage.
Could you help me plz ?
Toshiro
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2003 06:31 AM
04-03-2003 06:31 AM
Re: Memory Windows usage
see
/usr/share/doc/mem_wndws.txt
which is on your machine
7.0 What tools/statistics exist for debugging?
----------------------------------------------
The 11.00 and 11.10 releases ship memory windows functionality only as a
patch. Memory windows is not part of the release base and as such there
are restrictions on what changes are acceptable. For instance, changing
visible header files can cause unforeseen compatibility problems. HP
recognizes the need to return status information and not to break binary
compatibility. For the patch this meant return status information was
not placed in the appropriate places and was reported through a
different means. Because HP wants to place the information in the
appropriate place, the command to provide memory window information is
an unsupported tool at the 11.0 and 11.10 releases.
memwin_stats is available at:
ftp://hpchs.cup.hp.com/tools/11.X/memwin_stats.shar
memwin_stats is the Unsupported command to display information about
shared memory segments, processes and the memory windows themselves.
syntax: memwin_stats [-m] [-w] [-p pid]
steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2003 07:48 AM
04-04-2003 07:48 AM
Re: Memory Windows usage
I have already run memwin_stats, but with -w option I have got just one PID by Memory Window. And I'm not sure if this shows the really usage of each Memory Window. Overmore this PID are not identified by command ps.
For each Memory Window, I need to determine the size used by process (run process and forked process)of each user.
For instance :
Memory Window n??3
=> toto used 100M
=> tutu used 200M
Memory Window n??4
=> tata used 150M
...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2003 08:08 AM
04-04-2003 08:08 AM
Re: Memory Windows usage
You can get it here:
tp://contrib:9unsupp8@hprc.external.hp.com/sysadmin/programs/shminfo/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2003 05:04 AM
04-07-2003 05:04 AM
Re: Memory Windows usage
I'am going to use that, I think. There are options to identify process ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2003 06:16 AM
04-07-2003 06:16 AM
SolutionThe memwin_stats is obsolete now, as mentioned shminfo is the one to use. As with all the contributed tools use the -h flag to get all thw options.
In your case, use:
# shminfo -w
To get the virtual adress start point, size and shared memory id (shmid). Then use:
# shminfo -s
To see a full description of the process etc.
Regards,
James.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2003 06:42 AM
04-07-2003 06:42 AM
Re: Memory Windows usage
Thx ;)