1826614 Members
2745 Online
109695 Solutions
New Discussion

Logical volume

 
Kosmider
Occasional Contributor

Logical volume

I have Virtual Array VA7400, HP-UX 11.00.
There are two Redundancy Groups: RG1, RG2 on this VA7400.
Can I create logical volume on two LUNs ?

Krzysztof
3 REPLIES 3
Ivan Ferreira
Honored Contributor

Re: Logical volume

You can create a volume group that spans multiples LUNs or physical disk, then create a logical volume in this volume group. As results, the logical volume will use both disks.
Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?
Torsten.
Acclaimed Contributor

Re: Logical volume

Yes!

Easily use SAM and stripe the LVOL over the LUNS for performance!

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!   
Ivan Ferreira
Honored Contributor

Re: Logical volume

For example:

# Create a Volume Group with two disks or lunx

vgcreate /dev/vg01 /dev/dsk/c3t0d0 /dev/dsk/c4t0d0

# Create the logical volume with size of 500 GB, stripped across 2 disks with a stripe size of 64 KB

lvcreate -L 500 -i 2 -I 64 /dev/vg01
Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?