- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Production server is showing 98% memory utilizatio...
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
02-07-2008 09:26 AM
02-07-2008 09:26 AM
HP-UX 11.11
Thank you !!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2008 09:31 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2008 09:34 AM
02-07-2008 09:34 AM
Re: Production server is showing 98% memory utilization
Thank you !!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2008 09:57 AM
02-07-2008 09:57 AM
Re: Production server is showing 98% memory utilization
1. Check dbc_max_pct.
2. export UNIX95=1;ps -ef -o comm,pcpu,vsz,args | grep
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2008 10:51 AM
02-07-2008 10:51 AM
Re: Production server is showing 98% memory utilization
For a list of all the 1-letter commands, just type ? while running Glance.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2008 10:55 AM
02-07-2008 10:55 AM
Re: Production server is showing 98% memory utilization
For a list of all the 1-letter commands, just type ? while running Glance.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2008 12:01 PM
02-07-2008 12:01 PM
Re: Production server is showing 98% memory utilization
> 1. Check dbc_max_pct.
>
> 2. export UNIX95=1;ps -ef -o comm,pcpu,vsz,args | grep
dbc_max_pct is a setting for swap space management and will not any provide any information about processes consuming large amounts of RAM.
It is always a bad idea to export UNIX95. UNIX95 changes the behavior of several libraries and processes. For ps, it is a good setting to use as it adds several new options. But when exported, every process you run from then on may be affected by this setting. For instance, Ignite may fail in many versions.
Instead, the command line should be:
UNIX95=1 ps -eo vsz,pid,ppid,pcpu,args | sort -rn
In this example, UNIX95=1 exists onlt for the duration of the ps command, and yes, it is OK to assign a variable in front of a command name. As mentioned in other threads, grep is a very bad tool for selecting processes because it is non-selective. That means that grep sh will find many, many unwanted processes. Instead, use the _C option in ps:
UNIX95=1 ps -fC sh
Compare the above results with:
ps -ef | grep sh
(not a very nice list at all)
Bill Hassell, sysadmin