HPE 9000 and HPE e3000 Servers
1752790 Members
6488 Online
108789 Solutions
New Discussion юеВ

Re: Need to add cells in NPAR

 
kvsheejith
Advisor

Need to add cells in NPAR

Hi I have rp8400 running with hp unix.i need to add cells in NPAR. The command what i am giving is

parmodify -p0 -a cell:cell0.

But i am unable to add this cell.
What would be the exact command?
7 REPLIES 7
johnsonpk
Honored Contributor

Re: Need to add cells in NPAR

Hi Sheejith,

To find out the available cells on the server
#parstatus -Av

add the free cell using parmodify command

#parmodify -p -a ::ri:

reboot for reconfiguration
#shutdown -Ry o




VK2COT
Honored Contributor

Re: Need to add cells in NPAR

Hello,

You did not specify which version of HP-UX
is used.

If it is HP-UX 11.31 Sep 2008 or newer,
you can use Dynamic nPar Cell Migration
procedure.

Three commands to add a cell dynamically
(no downtime):

# parmodify -p 0 -a 0:floating:y::100%
# parolrad -a 0
# olrad -A -s 0

These three commands above were actually
used in one of the HP-UX coutrses I taught
so they are real-life examples...

Cheers,

VK2COT
VK2COT - Dusan Baljevic
AVV
Super Advisor

Re: Need to add cells in NPAR

Hi,

Pelase see the available cells using

#parstatus -AC

then choose a cell that to be added.

use
#parmodify -p -a cell:cellnumber:base:y::100%

Base <-- can be used as floating instead depending upon the version avail.

#parolrad -a
#olrad -s
#shutdown -Ry now

Ensure that you give spacing between the inputs given as required. Missing a space or : may not allow you to be succeeded.
Torsten.
Acclaimed Contributor

Re: Need to add cells in NPAR

Error message?

Please show us what you currently have


# parstatus

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
sen_ux
Valued Contributor

Re: Need to add cells in NPAR

Command syntax you are using is wrong.

Try the below syntax.

parmodify -p0 -a 3:base:y:ri:50% -B

where 3 is the cell number..no need to specify cell:cell nu:

base is cell type

y - whether to use the new cell on next boot

ri - reactivate with memory interleave.

50% - amount of CLM

-B is to boot the new nPar after a Shutdown -Ry 0
kvsheejith
Advisor

Re: Need to add cells in NPAR

Thanks for the help
kvsheejith
Advisor

Re: Need to add cells in NPAR

thanks