- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: kmtune vs. sam
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
07-27-2006 01:53 AM
07-27-2006 01:53 AM
kmtune vs. sam
OS=hpux 11.11 (bootet after new kernel gen.!!)
I tried to get all hosts in sync with the kernel parameters (same apps on all hosts) and for that I excecute following command:
#kmtune -q shmmax
Parameter Current Dyn Planned
=========================================
shmmax 67108864 Y (20*1024*1024*1024)
#kmtune -l
Parameter: shmmax
Current: 67108864
Planned: (20*1024*1024*1024)
SAM is showing the correct values.
shmmax 21474836480 21474836480 Dynamic N/A
btw. sam is showing the value but not the formula but when you like to change the value, the formule will shown.
Looks like that kmtune is not ok.
Any ideas?
Thanks in advance.
Klaus
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2006 03:49 AM
07-27-2006 03:49 AM
Re: kmtune vs. sam
I don't think its a matter of kmtune being wrong.
You need to be in a certain directory and understand the entire process of putting a kernel into production to get accurate results from kmtune, or its successor kctune(11iv2).
Here is a guide.
#cd /stand
#cp vmunix vmunix.old
#cp system system.old
#cd build
#/usr/lbin/system/system_prep -s system
Edit system file and make changes here as per ur require ment. Imeand addition/Deletion of devices. Then
#mk_kernel -s system
For more information see the man page of mk_kernel
Now one new kernel will be created in /stand/buil directory. Copy this to original location
#cd /stan/build
#cp vmunix_test /stand/vmunix
#cp system /stand
Now reboot the system . In case rebuilding was not successfull, Boot thru /stand/vmunix.old and recover kernel.
From an ITRC thread.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2006 04:22 AM
07-27-2006 04:22 AM
Re: kmtune vs. sam
yes. looks something wrong with the kmtune.
kmtune -q shmmax gives hex value in my system.
kmtune -q shmmax
Parameter Current Dyn Planned Module Version
===============================================================================
shmmax 0x40000000 Y 0X40000000
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2006 04:28 AM
07-27-2006 04:28 AM
Re: kmtune vs. sam
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2006 07:58 PM
07-27-2006 07:58 PM
Re: kmtune vs. sam
At the end the answer from Bill Hassel was the solution/reality. Sorry Bill, you will get next time an additional 5 points bonus from me.
kmtune -s shmmax=21474836480 #set value planned
kmtune -q shmmax
Parameter Current Dyn Planned
=================================
shmmax 67108864 Y 21474836480
kmtune -u #set value current
kmtune -q shmmax
Parameter Current Dyn Planned
=================================
shmmax 21474836480 Y 21474836480
Thanks and regards,
Klaus