Operating System - HP-UX
1753618 Members
5765 Online
108797 Solutions
New Discussion юеВ

Adding unallocated array space to VG

 
mura_1
Occasional Advisor

Adding unallocated array space to VG

Hi all,

I have unallocated space of 100 GB in VA7100 array, I want to allocate this space to my existing oradb(vg01) filesystem.How do we add this unallocated space with oradb filesyatem.

Model : 9000/800/L1500-7x
Array : VA 7100 with command view SDM
HPUX version : 11.00

VG00 FREE PE : 1563 * 8 ( 12 GB)
VG01 FREE PE : 0
VG03 FREE PE : 0

/dev/vg01/ora_data 262086656 210946200 50740952 81% /oradb

From armdsp command

Unallocated (Available for LUNs):___100 GB

Thanks
mura
3 REPLIES 3
Pete Randall
Outstanding Contributor

Re: Adding unallocated array space to VG

1. Allocate LUNs.
2. Run pvcreate against the new LUNs
3. Run vgextend utilizing the new LUNs


Pete

Pete
Torsten.
Acclaimed Contributor

Re: Adding unallocated array space to VG

Create a LUN on the array first using the GUI or the menu based command interface (cvui). If needed, adjust the security settings.
Run "ioscan" followed by "insf -e" on the host to detect the LUN and create device files. Now add the LUN to your existing VG, e.g.

pvcreate /dev/rdsk/cxtxdx
vgextend vg01 /dev/dsk/cxtxdx
do the vgextend again for the alternate path(es).

Now the space is available to extend your LVOLs.

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!   
mura_1
Occasional Advisor

Re: Adding unallocated array space to VG


worked, Thanks