Operating System - HP-UX
1838374 Members
3267 Online
110125 Solutions
New Discussion

Kernel parameter change , if reboot required?

 
SOLVED
Go to solution
rveri
Super Advisor

Kernel parameter change , if reboot required?

Hi All,

Does increasing this parameters required a reboot:

maxssiz
maxssiz_64bit


Hp-ux version : 11.11

Thanks,
6 REPLIES 6
Warren_9
Honored Contributor
Solution

Re: Kernel parameter change , if reboot required?

Hi,

both the maxssiz and maxssiz_64 are static... therefore reboot is require to apply the changes.

GOOD LUCK!!
Arunvijai_4
Honored Contributor

Re: Kernel parameter change , if reboot required?

Hi,

Yes, you need to reboot the server. Refer,

http://docs.hp.com/en/TKP-90202/re37.html

Restrictions on Changing

Changes to this tunable take effect at the next reboot.

-Arun
"A ship in the harbor is safe, but that is not what ships are built for"
Warren_9
Honored Contributor

Re: Kernel parameter change , if reboot required?

for details, pls reference to the following

http://docs.hp.com/en/TKP-90202/index.html?jumpid=reg_R1002_USEN

Raj D.
Honored Contributor

Re: Kernel parameter change , if reboot required?

veri,

Yes , Static parameter. Reboot required.

kmtune -s maxssiz=newvalue
kmtune -s maxssiz_64bit=newvalue

./mk_kernel
kmupdate
shutdown -r -y 0

After reboot check with # kmtune -q maxssiz

Cheers,
Raj.
" If u think u can , If u think u cannot , - You are always Right . "
Indira Aramandla
Honored Contributor

Re: Kernel parameter change , if reboot required?

Hi rveri,

Kernel parameters if they are not dynamic, they require reboot.

You can find out if the parameter is Static or Dynamic by using jmtune -q option, to query the value of the specified system parameter.

For eg:-


kmtune -q maxssiz

Parameter Current Dyn Planned Module Version
==============================================================
maxssiz 0x6000000 - 0X6000000


Here you can see the - under Dyn, meaning the parameter is static and not dynamic. If the parameter is dynamic then you will see "Y" under Dyn


Indira A
Never give up, Keep Trying
rveri
Super Advisor

Re: Kernel parameter change , if reboot required?

Thanks everyone.