- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Uping a Tunable Kernel parameter without 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
04-18-2002 05:24 AM
04-18-2002 05:24 AM
Uping a Tunable Kernel parameter without SAM
Any sugguestion.
Cheers
Rich
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2002 05:36 AM
04-18-2002 05:36 AM
Re: Uping a Tunable Kernel parameter without SAM
Not sure about a Kernel Parameter called - MAXPROC. However, any kernel parameter can be tuned by using this method:
1) make copy of /stand/system and /stand/vmunix
2) edit /stand/system
3) Add the new value in the file
4) Rebuild new kernel with mk_kernel ( see man pages)
5) move new kernel from /stand/build
6) restart the system.
I think you are talking about max_thread_proc
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2002 05:39 AM
04-18-2002 05:39 AM
Re: Uping a Tunable Kernel parameter without SAM
And thanks for the info
I looks pretty straight forward
Cheers
Rich
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2002 05:39 AM
04-18-2002 05:39 AM
Re: Uping a Tunable Kernel parameter without SAM
What OS
On 11.x
kmtune(1M) kmtune(1M)
NAME
kmtune - query, set, or reset system parameters
SYNOPSIS
/usr/sbin/kmtune [-l] [[-q name]...] [-S system_file]
/usr/sbin/kmtune [[-s name {=|+} value]...] [[-r name]...]
[-S system_file]
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2002 05:46 AM
04-18-2002 05:46 AM
Re: Uping a Tunable Kernel parameter without SAM
Also check this great topics:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x316efd3f91d3d5118ff40090279cd0f9,00.html
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x96b70bce6f33d6118fff0090279cd0f9,00.html
to find out them:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x1e6f84534efbd5118ff40090279cd0f9,00.html
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2002 05:47 AM
04-18-2002 05:47 AM
Re: Uping a Tunable Kernel parameter without SAM
11.0
cheers
Rich
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2002 05:49 AM
04-18-2002 05:49 AM
Re: Uping a Tunable Kernel parameter without SAM
I prefer to use SAM as it checks that you are not tuning the parameter out of range. If you wrongly tune certain parameters you could end up with a system that won't boot!
The following will build you a new kernel :-
# cd /stand/build
# /usr/lbin/sysadm/system_prep -s system
# vi system (make your changes and save the file)
Under the section Tunable parameters add your entry for maxuprc
* Tunable parameters
maxuprc 75
# mk_kernel -s system
# kmupdate (HPUX 11 only)
# cd /stand (HPUX 10.20 only)
# mv vmunix vmunix.prev (HPUX 10.20 only)
# mv /stand/build/vmunix_test /stand/vmunix (HPUX 10.20 only)
# cd /
# shutdown -r -y 0
Also I'd try it on a test server first.
Good luck!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2002 05:58 AM
04-18-2002 05:58 AM
Re: Uping a Tunable Kernel parameter without SAM
cheers
Rich