- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Kernel parameter setting is lost after each re...
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
09-04-2001 02:40 AM
09-04-2001 02:40 AM
I have modified on HP-UX 11i some kernel parameters for a given application:
msgmax 32768
msgmnb 32768
shmseg 120
msgseg 7168
After a reboot the setting for msgmax (dynamic, no reboot required) is lost.
How can I prevent this and make it persistent
Thanks in advance,
Rui.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2001 02:50 AM
09-04-2001 02:50 AM
Re: Kernel parameter setting is lost after each reboot...
you can put this params in the system file in /stand/system
* Tunable parameters
msgmax 32768
msgmnb 32768
shmseg 120
msgseg 7168
and compile the system again
# cd /stand/build
# system_prep -s system
# mk_kernel -s system
the next time it will boot the kernel with be set
i m checking now why your kernel params didnt update but i think that you didnt compile the kernel and the afectt didnt come up after the reboot but like i said , checking
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2001 02:56 AM
09-04-2001 02:56 AM
Re: Kernel parameter setting is lost after each reboot...
Try using SAM to changes the kernel.
...BPK...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2001 03:03 AM
09-04-2001 03:03 AM
SolutionYou haven't actually said how you made these changes to the kernel, but to save all of the changes and reboot your system please follow the following:
# cd /stand/build
# /usr/lbin/sysadm/system_prep -s system
# vi system
make your changes and save the file
# mk_kernel -s system
# kmupdate (this tells the system that at the next reboot a new kernel has been generated and to load it)
# cd /
# shutdown -r -y now
HTH
-Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2001 04:18 AM
09-04-2001 04:18 AM
Re: Kernel parameter setting is lost after each reboot...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2001 09:24 AM
09-15-2001 09:24 AM
Re: Kernel parameter setting is lost after each reboot...
But with the command line instructions it worked!
Thank you all for your help!
Regards,
Rui.