1837712 Members
4585 Online
110118 Solutions
New Discussion

Re: FS Increase by SAM

 
SOLVED
Go to solution
Fuad_1
Regular Advisor

FS Increase by SAM

Hi,

I have increase the LV for the below FS in SAM

/disk2/oradata/EBSD,/disk2/oradata/EBSTR

But, when do bdf does not shows the changes. I have space and online JFS.
Set goals, and work to achieve them
4 REPLIES 4
Cheryl Griffin
Honored Contributor

Re: FS Increase by SAM

It sounds like the lvextend was successful, but the fsadm/extendfs was not.

What happens if you try to fsadm/extendfs from command line? Do you get an error?
With OnlineJFS:
# fsadm -F vxfs -b (size) /dev/vgXX/lvolXX

Without OnlineJFS:
# umount /dev/vgXX/lvolXX
# extendfs -F vxfs /dev/vgXX/rlvolXX
# mount /dev/vgXX/lvolXX
"Downtime is a Crime."
Marcin Gonet_1
Advisor

Re: FS Increase by SAM

Now you should also extend filesystem. You can use "extendfs" command to do that.

For example:

extendfs -F vxfs /dev/vg01/rlvol1

Try "man extendfs" to get more information.
Jean-Louis Phelix
Honored Contributor
Solution

Re: FS Increase by SAM

Hi,

It's a trap ... When you want to extend a file system :

- If you use command line :
lvextend first then umount,extenfs,mount or fsadm depending on wether you have Online jfs or not

- If you use SAM, you have to extend the FILESYSTEM, not the LV. In this case, SAM will do first the lvextend then will extend the filesystem. If you choose to extend the LV, it will only do what you ask (only extend the LV), but unfortunately the FS will stay unchanged.

Regards.
It works for me (© Bill McNAMARA ...)
Fuad_1
Regular Advisor

Re: FS Increase by SAM

Thank you all.
Set goals, and work to achieve them