- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Glance/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-09-2000 07:55 AM
06-09-2000 07:55 AM
Glance/Memory
How can I tell what is causing memory to hit 96 - 98%
Thanks
Junior
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2000 08:10 AM
06-09-2000 08:10 AM
Re: Glance/Memory
Brian
<*(((>< er
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2000 08:17 AM
06-09-2000 08:17 AM
Re: Glance/Memory
User mem: 89.2mb
sys mem: 16.3mb
buf mem: 16.3mb
total VM: 120.6mb
Active VM: 63mb
free mem: 5.1mb
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2000 09:23 AM
06-09-2000 09:23 AM
Re: Glance/Memory
Brian
<*(((>< er
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2000 02:17 PM
06-09-2000 02:17 PM
Re: Glance/Memory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2000 01:13 AM
06-12-2000 01:13 AM
Re: Glance/Memory
If swapping becomes excessive, things will run slowly...you can see this with Glance (or vmstat) looking at page outs (not page in which includes all program starts).
As mentioned before, the buffer cache may be set to a poor value. By default, it ranges from 5-50% of RAM, a rather siginifcant impact to RAM usage until processes push the limit down towards 5%. To avoid this remapping, you can set the kernel param bufpages to about 200-500 megs (the parameter is in pages of 4kb) for average systems, much higher for large RAM (multi-GB) where reads outnumber writes significantly.
To see the programs which occupy RAM sorted by size:
UNIX95= ps -e -o ruser,vsz,pid,args | sort -rnk2 | more
The UNIX95 setting turns on new options in the ps command.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2000 02:12 AM
06-12-2000 02:12 AM
Re: Glance/Memory
swapmem_on=1
allocate_fs_swapmap=0
nbuf=0
bufpages=0
If nbuf and bufpages are set to zero, you can reduce dbc_max_pct to 20 to reduce the range it has to go when remapping. From your mesg. your average buf mem is 16.3mb which is 12.7% of you Phys mem.
The above kernel settings will help in the system memory allocation and usage.