- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: running kernel, parametres
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
12-12-2001 02:11 AM
12-12-2001 02:11 AM
I want the value of "semmap" and "sema" in the running kernel. How do I get it?
kmtune -q maxusers : 400
kmtune -q nproc : ((10*maxusers)/3)+128 = 1461
kmtune -q semmni : (NPROC*2) = 2922
kmtune -q semmap : (SEMMNI+2) = 2924
sysdef | grep semmap : 191430656
kmtune -q sema : 1
sysdef | grep sema : 0
Which command should I use?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2001 02:23 AM
12-12-2001 02:23 AM
Solutionsysdef is an 'old' 10.20 tool.
you should use kmtune as the manual says:
sysdef will not be supported in
the future releases of HP-UX. So users are advised to use kmtune(1M)
utility which provides additional information on kernel tunable
Regards
Rainer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2001 02:26 AM
12-12-2001 02:26 AM
Re: running kernel, parametres
Use kmtune or adb or use SAM. We earlier got wrong values from sysdef
...BPK...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2001 02:30 AM
12-12-2001 02:30 AM
Re: running kernel, parametres
#more /stand/build/tune.h |grep -i semmap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2001 02:33 AM
12-12-2001 02:33 AM
Re: running kernel, parametres
`echo "physmem/D" | adb /stand/vmunix /dev/kmem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2001 02:42 AM
12-12-2001 02:42 AM
Re: running kernel, parametres
# echo "semmap/D" | adb /stand/vmunix /dev/kmem
Error from elf64_getehdr(application core file)
Not an Elf file: No Elf header
semmap:
semmap: 191430656
#echo "sema/D" | adb /stand/vmunix /dev/kmem
Error from elf64_getehdr(application core file)
Not an Elf file: No Elf header
sema:
sema: 0
If these values are correct, then I can't trust kmtune, or?
The values match sysdef.
(By the way, it is HP-UX 11.00)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2001 04:56 AM
12-12-2001 04:56 AM
Re: running kernel, parametres
Sorry i missed -k , the command is
`echo "physmem/D" | adb -k /stand/vmunix /dev/kmem