- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- L2000 tuning for higher perf
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
09-30-2004 09:57 PM
09-30-2004 09:57 PM
I have a L2000 HPUX 11.00 whith 3GB of RAM and 6GB of swap.
I have an Oracle database 8.0.6 with an ERP "generix"
The server is limited in perf with this environnement (200-250 processes for generix), could u guide me ?
Do i have to change kernel parameters..?
What else should i do..?
thanks!!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2004 10:00 PM
09-30-2004 10:00 PM
Re: L2000 tuning for higher perf
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2004 10:21 PM
09-30-2004 10:21 PM
Re: L2000 tuning for higher perf
Post the results of:
HP-UX Kernel:
#kmtune -l -q shmmax
#kmtune -l -q dbc_max_pct
#kmtune -l -q dbc_min_pct
#swapinfo -tam
Oracle init
processes = ?
db_block_buffers = ?
db_files = ?
log_checkpoint_interval = ?
log_buffer = ?
shared_pool_size = ?
dbwr_io_slaves = ?
db_block_lru_latches = ?
Best Regards,
Eric Antunes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2004 11:26 PM
09-30-2004 11:26 PM
Re: L2000 tuning for higher perf
This doc may be helpful.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2004 12:06 AM
10-01-2004 12:06 AM
Re: L2000 tuning for higher perf
kmtune -l -q shmmax :
Parameter: shmmax
Value: 0X4000000
Default: 0X4000000
Minimum: -
Module: -
l2000-1:/#kmtune -l -q dbc_max_pct
Parameter: dbc_max_pct
Value: 10
Default: 50
Minimum: -
Module: -
l2000-1:/#kmtune -l -q dbc_min_pct
Parameter: dbc_min_pct
Value: 5
Default: 5
Minimum: -
Module: -
l2000-1:/#swapinfo -tam
Mb Mb Mb PCT START/ Mb
TYPE AVAIL USED FREE USED LIMIT RESERVE PRI NAME
dev 6000 0 1024 0% 0 - 1 /dev/vg00/lvol2
reserve - 1024 -1024
memory 2404 2023 381 84%
total 8404 3047 381 36% - 0 -
oracle:
processes=794
db_block_buffers = 30000
db_files = 40
log_buffer = 32768
log_checkpoint_interval = 4194304
shared_pool_size = 30000000
and dbwr_io_slaves = ?
db_block_lru_latches = ?
are not present...
any idea..?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2004 12:26 AM
10-01-2004 12:26 AM
SolutionHP-UX:
You should increase shmmax to 2147483648 (You can do this on SAM->Kernel Configuration->Configurable Parameters->[select shmmax]->Actions->Modify Configurable Parameter...)
It seems you have to much swap since you are not using any of the 6Gb available. But this not affects performance, only disk space.
Oracle:
Try to decrease db_block_buffers (if you have db_block_size = 8192, then you are reserving aprox. 240Mb for buffer cache: that's too much!):
db_block_buffers = 10000
Increase log_buffer:
log_buffer = 1048576
dbwr_io_slaves should only be used for heavy OLTP processing databases.
dbwr_io_slaves should only be used id you have multiple processors. For exemple, if you have 3 processors, you should use:
dbwr_io_slaves = 3
db_block_lru_latches = 3
Best Regards,
Eric Antunes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2004 12:31 AM
10-01-2004 12:31 AM
Re: L2000 tuning for higher perf
"dbwr_io_slaves should only be used id you have multiple processors. For exemple, if you have 3 processors, you should use:
dbwr_io_slaves = 3
db_block_lru_latches = 3"
You should read:
"
db_writer_processes (I'm not sure) should only be used id you have multiple processors. For exemple, if you have 3 processors, you should use:
db_writer_processes = 3
db_block_lru_latches = 3
"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2004 01:16 AM
10-01-2004 01:16 AM
Re: L2000 tuning for higher perf
Let me know if performance gets better.
Eric Antunes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2004 01:34 AM
10-01-2004 01:34 AM