Operating System - HP-UX
1748067 Members
5459 Online
108758 Solutions
New Discussion юеВ

Re: SAM is supported on HP-UX 11.31?

 
SOLVED
Go to solution
SKR_1
Trusted Contributor

SAM is supported on HP-UX 11.31?

Can i update Kernal parameter through sam.

Parameter names

maxfiles
maxfiles_lim
ncsize
5 REPLIES 5
Basheer_2
Trusted Contributor

Re: SAM is supported on HP-UX 11.31?

use smh the new sam.
yes it is still supported.
SKR_1
Trusted Contributor

Re: SAM is supported on HP-UX 11.31?

If we change the parameters with command line, we need to rebuild the kernal manually.

Do you know how to rebuild the kernal with command line.

Thanks
Sundar G
Frequent Advisor

Re: SAM is supported on HP-UX 11.31?

1. cd /stand/build
2. create the kernal parameter system file
/usr/lbin/sysadm/system_prep -s system
3. Make your changes to the system file
vi system
4. build the new kernal
/usr/sbin/mk_kernel -s ./system
5. back up the old kernel and sys files
mv /stan/system /stand/system.prev
mv /stand/vmunix /stand/vmunix.prev
6. install the new kernel
cp /stand/build/system /stand
cp /stand/build/vmunix_test /stand/vmunix
7. reboot system
8. verify the kernel changes using sysdef
Wim Rombauts
Honored Contributor
Solution

Re: SAM is supported on HP-UX 11.31?

Since we upgraded to 11i v3, we use SMH, and you can configure selected regular accounts to have (limiled) access to SMH; so you don't have to spread the root password around. It works fine and shows you more than the old SAM.

But you can change those parameters on the commandline without too much hassle.

Look at the manpage of kctune.
Generally "kctune =".

Setting tunables never requires a kernel to be rebuilt, but you may have to reboot your server to make the changed value active.
SKR_1
Trusted Contributor

Re: SAM is supported on HP-UX 11.31?

Thanks to all.