- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- dhcp and java memory leak
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
10-22-2001 06:52 AM
10-22-2001 06:52 AM
Thanks
Richard
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2001 07:01 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2001 07:03 AM
10-22-2001 07:03 AM
Re: dhcp and java memory leak
Three things:
1. There has been a known problem with 'mib2agt' although that is now a fairly old issue. PHSS_24945 is the latest patch that addresses that problem.
2. As you may remember, the following snippet of code is very, very handy in finding potential memory problems:
# UNIX95= ps -e -o ruser,vsz,pid,args|sort -rnk2|more
You would want to look for processes that grow over time.
3. From your 'glance' output it looks like you have your 'dbc_max_pct' set very high. Using more than about 300MB for the buffer cache is usually wasteful, especially if you are running a database which does its own buffering.
By default, 'dbc_max_pct' is set to 50%. Bring it way down to reclaim some memory!
See this too:
http://docs.hp.com/hpux/onlinedocs/os/KCparam.DBCmaxPct.html
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2001 04:17 PM
10-23-2001 04:17 PM
Re: dhcp and java memory leak
How do I determine to bring 'dbc_max_pct' down?
what effects will that have?
Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2001 03:17 PM
10-24-2001 03:17 PM
Re: dhcp and java memory leak
'dbc_max_pct' and its companion kernel parameter 'dbc_min-pct' set the limits for "buffer cache" -- memory used for file buffers. On servers running database engines which do their own I/O buffering (like Oracle), setting up a large buffer cache actually causes *double* work because *two* buffer algorithms operate -- one for the database (SGA) and the other for the Unix buffer pool.
On the other hand, if you have a server where lots of files are opened and shared by many processes while they are open, then having file buffers in memory aids I/O performance.
Generally, far too much memory is set aside for the buffer cache. About 300MB is considered adequate as a rule-of-thumb.
You can see the actual values in the [m]emory window of 'glance'.
Read the link below for 'dbc_max_pct' and 'bufpages'. You will note that when 'bufpages' and 'nbuf' are set to zero, 'dbc_max_pct' and 'dbc_min_pct' set the maximum and minimum dynamic buffer size. It is also possible to set 'bufpages' and define a *fixed* buffer cache size.
http://docs.hp.com/hpux/onlinedocs/os/KCparam.DBCmaxPct.html
Regards!
...JRF...