Mattiuzzo
10 years agoLevel 2
Storage foundation linux - increase lun
Hi All,
I am new on storage foundation solution, and also on the company.
I have a oracle database running storage foundation and i just need increase a database lun.
Do i need to do something on storage foundation configuration? or can i just increase the size by storage side and reboot my linux?
The luns is one of resources that storage foundation manage.
Thank you
You will need to:
- vxprint -d (see current disk sizes)
- expand the 2 Luns on EMC storage
- vxdctl enable
- vxdisk -g oradg01 resize emcpowera (grow disk)
- vxdisk -g oradg02 resize emcpowerb (grow disk)
- vxprint -d (check disk sizes have increased)
- check space available to grow datavol01:
vxassist -g oradg01 maxgrow datavol01 - check space available to grow datavol02:
vxassist -g oradg02 maxgrow datavol02 - Grow filesystem (size you can grow will depend on output from 7):
vxresize -g oradg01 datavol01 +354 - Grow filesystem (size you can grow will depend on output from 8):
vxresize -g oradg02 datavol02 +352
Note on your systems you have 2 disks each containing 1 filesystem, but you could have 2 filesystems on one disk - this is why growing disks and filesystems are separate steps
Mike