Operating System - HP-UX
1823230 Members
3556 Online
109648 Solutions
New Discussion юеВ

Re: online jfs doesn't take effect

 
SOLVED
Go to solution
remer
Advisor

online jfs doesn't take effect

hi,

hope someone can help,

i've increased a particular logical volume using SAM and it work properly.

my problem is when i look using lvdisplay and bdf the size i've added dooesn't take effect.

how can i solve this without dismounting/mouting the logical volume?

Thanks in advance.
5 REPLIES 5
YAQUB_1
Respected Contributor
Solution

Re: online jfs doesn't take effect

Hi Remer,

check the below thread:-

http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1164762

Hope it will help for U.

Thanks--Yaqub
I am a Customer Advocate!!!
YAQUB_1
Respected Contributor

Re: online jfs doesn't take effect

Hi,

U can do also this way:-

# lvextend ├в L 1000 /dev/vgXX/lvXXX
# fsadm ├в F vxfs ├в b 1000m /
(1000MB is the new size of the logical volume in this case)

Thanks--Yaqub
I am Customer Advocate!!!
Kapil Jha
Honored Contributor

Re: online jfs doesn't take effect

you may use command line to extend file system.First check if u have online JFS installed using swlist command.

lvextend -L
fsadm -b

one thing you may check free PE in
vgdisplay vgXX.

Hope this help.
BR,
Kapil
I am in this small bowl, I wane see the real world......
YAQUB_1
Respected Contributor

Re: online jfs doesn't take effect

Hi,

Without OnlineJFS U can do also below process:-

# lvextend -L 240 /dev/vgxx/lvxxx
(The new total size will be 240M)
# umount /xxx
(Note: If the filesystem is in use, it is impossible to unmount it. Therefore stop all the processes (applications) that use the filesystem then unmount it. Processes that use /usr and /var cannot be all stopped,
the only solution is to reboot in single user mode)
# extendfs -F vxfs /dev/vgxx/rlvxxx
# mount /dev/vgxx/lvxxx /xxx

Hope for the Best,

Thanks--Yaqub
I am a Customer Advocate!!!

remer
Advisor

Re: online jfs doesn't take effect

thanks to all.