- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Measuring shared memory
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
06-17-2004 08:58 PM
06-17-2004 08:58 PM
Measuring shared memory
Is there a way of looking at the amount of shared memory in use at a given point in time which could be logged over a period of time so I can see how and where it is growing ? Even a percentage used type of measure would be useful.
All help appreciated.
Simon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 09:02 PM
06-17-2004 09:02 PM
Re: Measuring shared memory
sks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 09:08 PM
06-17-2004 09:08 PM
Re: Measuring shared memory
Install the trial glance plus or measureware.
Also you can try top,vmstat,etc..,
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 09:12 PM
06-17-2004 09:12 PM
Re: Measuring shared memory
exist also command
ipcs,
and the option "-b"
could be useful.
Regards
pg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 09:19 PM
06-17-2004 09:19 PM
Re: Measuring shared memory
Are you using some database such as Oracle?
Is the context of shared memory related to Oracle?
sks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 11:28 PM
06-17-2004 11:28 PM
Re: Measuring shared memory
Put this script below into crontab and run it every so often. It lists all your shared memory segments with sizes in Kb and Mb.
Steve
echo " ID Perms Owner Size Creator Lastpid"
ipcs -ma | awk '
function sv(val)
{
if (val>=1024000.0) pv=sprintf("%3.2fMb",val/1024000);
else pv=sprintf("%3.2fKb",val/1024);
return pv;
}
{if(NR>3)printf("%6s %10s %8s %10s %6s %6s\n",$2,$4,$6,sv($10),$11,$12)}'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 11:40 PM
06-17-2004 11:40 PM
Re: Measuring shared memory
should be 1048576.0, not 1024000.0.