- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HP-UX 11.23 Kernel Configuration Tools -- Feedback...
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
11-18-2004 03:53 AM
11-18-2004 03:53 AM
HP-UX 11.23 Kernel Configuration Tools -- Feedback?
What have you liked about the new tools? What have you disliked? What has been confusing?
Thanks in advance for your feedback...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2005 02:09 AM
04-07-2005 02:09 AM
Re: HP-UX 11.23 Kernel Configuration Tools -- Feedback?
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2005 03:57 AM
04-07-2005 03:57 AM
Re: HP-UX 11.23 Kernel Configuration Tools -- Feedback?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2005 05:48 AM
04-07-2005 05:48 AM
Re: HP-UX 11.23 Kernel Configuration Tools -- Feedback?
I have to hurry - giving a presentation on 11iv2 in an hour!
Thanks...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2005 06:46 AM
04-07-2005 06:46 AM
Re: HP-UX 11.23 Kernel Configuration Tools -- Feedback?
Execuse me if I have mentioned this to you
before :-)
When I explicitely execute kcmodule to load a
DLKM module, the module is loaded as expected;
but my complain is, it is automatically loaded
even after the reboot. Since I did not use '-h'
option, I would have expected the module to stay
unloaded in the next boot. I might be wrong, but
as far as I remember, the hp-ux 11.11 tools
(kmadmin / kmsystem etc) behaved that way.
Is there any specific reason why it was designed to
behave this way?
- Biswajit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2005 06:55 AM
04-07-2005 06:55 AM
Re: HP-UX 11.23 Kernel Configuration Tools -- Feedback?
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2005 08:19 AM
04-07-2005 08:19 AM
Re: HP-UX 11.23 Kernel Configuration Tools -- Feedback?
As you noticed, the KC tools are designed to make all changes persist across reboots. Any time you change a tunable, load a module, etc., that change remains in force across reboots.
This behavior addresses a frequent customer complaint with the old tools. It's also implied by the fact that HP-UX is intended to run without reboots for months at a time. By the time a reboot occurs, the fact that a change was made could be months in the past and long forgotten, and applications can "break" because of the "loss" of the change.
Changes that are intended to last only until reboot are rare (and arguably inappropriate) in a production environment. In a development environment, however, they are occasionally desirable. If you have a need, for example, to load a module but leave it unloaded at next boot, you can accomplish this with
kcmodule modulename=loaded
followed by
kcmodule -h modulename=unused
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2005 06:23 PM
04-07-2005 06:23 PM
Re: HP-UX 11.23 Kernel Configuration Tools -- Feedback?
> Changes that are intended to last only until
> reboot are rare (and arguably inappropriate)
> in a production environment.
Well.. what I had in mind is something like the
following. What if a product wants to run a series
of commands to configure the product before it
loads it's DLKM module and all this is done in a RC
script. In that case, when the product is installed
for the first time and system reboots, the load of
DLKM module would happen when RC script
executes the configuration commands followed by
executation of kcmodule(1M) to load the DLKM
module. In subsequent reboots, the DLKM module
is loaded right at the beginning (before any of the
RC1 scripts are executed) and hence before the
series of configuration commands that are in the
product RC script. This could potentially create a
problem.
Ofcourse, this scenerio is purely speculative and
I don't know of any product that faces this
problem. So you might be correct in saying that
this is rare in a production environment.
- Biswajit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2005 02:37 AM
04-08-2005 02:37 AM
Re: HP-UX 11.23 Kernel Configuration Tools -- Feedback?
That should not be done in an rc script. It should be done in the module's preparation script, for just the reason you describe. If the module is marked with a load time of "run", and the commands are in the "preload" part of the module's preparation script, then they will be run before the module is loaded as you desire.
Steve