- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Kernel parameter templates in 11.31
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
05-17-2008 11:09 PM
05-17-2008 11:09 PM
We got some new servers with HP-UX 11.31. I want to make kernel parameters of one server identical to one other server.
I checked for the kernel configuration templates, which is available in HP-UX 11i. But I couldn't find it.
Can anyone help me on this ?
Thanks in advance :)
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2008 12:43 AM
05-18-2008 12:43 AM
SolutionLook at the kconfig (1m) command.
Configure the kernel how you want it on one system, then use "kconfig -e" to export to a file and "kconfig -i" to import on the other host. Full details on the man page.
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2008 01:10 AM
05-18-2008 01:10 AM
Re: Kernel parameter templates in 11.31
I did the following commands;
kconfig -e /tmp/template
copied the template to second machine and executed the following commands.
kconfig -V -i /tmp/template
I checked for an option to check and change 'only' kernel tunables and I couldn't find it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2008 05:51 PM
05-18-2008 05:51 PM
Re: Kernel parameter templates in 11.31
>I checked for an option to check and change 'only' kernel tunables and I couldn't find it.
Did the above command do what you wanted? Or did the -V cause it to fail?
I suppose you could edit what's in the template file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2008 09:50 PM
05-18-2008 09:50 PM
Re: Kernel parameter templates in 11.31
The above command did what I wanted.
I didn't try editing the file.
Thanks