- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Memory Issue
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
03-26-2007 04:52 PM
03-26-2007 04:52 PM
HP-UX Server B.11.11 have 12GB Memory, lockable ~ 9.3GB run Oracle Applications 11.5.9 with SGA = 800 MB, PGA = 500 MB. When I check memory, it consume ~ 93%!!!
#swapinfo -tm
Mb Mb Mb PCT START/ Mb
TYPE AVAIL USED FREE USED LIMIT RESERVE PRI NAME
dev 4096 117 3979 3% 0 - 1 /dev/vg00/lvol2
reserve - 3691 -3691
memory 9458 8821 637 93%
total 13554 12629 925 93% - 0 -
Please help me to explain what consume memory? (Attachment file include: top, swapinfo, ipcs, kmtune).
Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2007 06:24 PM
03-26-2007 06:24 PM
Re: Memory Issue
Your swap space value (4GB) is not sufficient enough. The recommendation is to have 2 X Physical memory. In your case (since pseudoswap is used) it should be 24GB swap disk space.
Did you finetune your kernel parameters according to Oracle requirements.
Please check the below kernel values.
dbc_max_pct (set it to 20 )
dbc_min_pct (set it to 5)
Regards,
Rasheed Tamton.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2007 06:36 PM
03-26-2007 06:36 PM
Re: Memory Issue
What's your buffer cache parameters?. If you are using default of 50% dbc_max_pct, then it will be a over kill. What are your max_dbc_pct, nbuf and bufpages settings? You can use 'kmtune -l -q
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2007 07:33 PM
03-26-2007 07:33 PM
Re: Memory Issue
I will increase swap more but I want to know what consume 8821 HP-UX system memory? How to calculate memory (I don't have glance)?
#kmtune -l -q dbc_max_pct
Parameter: dbc_max_pct
Current: 50
Planned: 50
Default: 50
Minimum: -
Module: -
Version: -
Dynamic: No
NBUF = 0 and BUF_PAGES = 0
I think that the dbc_max_pct parameter is only partial of high memory issue because my DEV server HP-UX B.11.11 RAM: 5GB (same kernel parameters with PROD Server) where can still run 2 Oracle Apps Instances (clone from Oracle PROD) (max memory Consumption ~ 7-8GB).
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2007 02:05 PM
03-27-2007 02:05 PM
Re: Memory Issue
Please help me to explain memory issue: 2113220K is real memory?
#top
Memory: 2113220K (1441196K) real, 5253816K (3724692K) virtual, 136988K free
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2007 02:35 PM
03-27-2007 02:35 PM
Re: Memory Issue
Tal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2007 03:03 PM
03-27-2007 03:03 PM
SolutionThe memory numbers from top are useless. With 12 Gb of RAM, 800 megs for Oracle is way too small. Your DBA can significantly improve performance with a larger SGA.
dbc_max_pct is far too large for 12gb RAM - change it to 10 (10% or 1200 megs). ninode is still a formula and outrageously high. Wipe out the formula and set it to 2048.
You'll get much more useful shared memory information with ipcs -bmop rather than plain ipcs. With this much memory and Oracle as a database, you definitely need Glance to properly manage this system's performance.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2007 03:26 PM
03-27-2007 03:26 PM
Re: Memory Issue
I intend to increase PGA from 500MB to 2GB and SGA to 1.2GB after adding more swap (10GB).
#swapinfo -tm
Mb Mb Mb PCT START/ Mb
TYPE AVAIL USED FREE USED LIMIT RESERVE PRI NAME
dev 4096 102 3994 2% 0 - 1 /dev/vg00/lvol2
reserve - 3639 -3639
memory 9458 8854 604 94%
total 13554 12595 959 93% - 0 -
Please explain why Memory is 94% (8854MB)? What consume my HP-UX memory?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2007 10:52 PM
03-27-2007 10:52 PM
Re: Memory Issue
The dbc is the dynamic buffer cache, which is an area of memory set aside for the use by the kernal. The default setting for HP-UX systems for the dbc maximum, as mentioned by Bill Hassell, is 50. This allocates a maximum of half your memory to the kernal's use in buffering I/O. The buffer cache, although it is called dynamic, tends to grow to until the maximum is reached. So for your system, you probably have 6 GB of memory devoted to the buffer cache.
As recommened by Bill Hassell, you should lower this kernal parameter to 10, or even 5 or 6 (600 MB to 840 MB).