1753781 Members
7534 Online
108799 Solutions
New Discussion юеВ

Re: fsadm error

 
SOLVED
Go to solution
Regina Mitchell
Frequent Advisor

fsadm error

I'm hoping someone can help this morning. I have a HPUX 11.23. I'm increasing the size of two mountpoints

1. Extend the Logical Volume
lvextend тАУL 71712 /dev/vg02/lvol1
fsadm тАУF vxfs тАУb 71712m /ldata/ohp1logs1


lvextend тАУL 207072 /dev/vg02/lvol2
fsadm тАУF vxfs тАУb 207072m /ldata/ohp1data1


I get the following error UX:vxfs fsadm: ERROR: V-3-20279: /ldata/ohp1data1 is not the root inode of a vxfs file system


ERROR: V-3-20279: /ldata/ohp1logs1 is not the root inode of a vxfs file system


Can someone help? I'm in the middle of a maintenance window
7 REPLIES 7
Michal Kapalka (mikap)
Honored Contributor
Solution

Re: fsadm error

HI,

The message "/ldata/ohp1logs1 .... is nott the root inode of a vxfs file system" means that '/ldata/ohp1logs1 ...' is not a mounted filesystem.

mikap
R.K. #
Honored Contributor

Re: fsadm error

Hi Regina,

As said, plz check if the lvol is mounted and then follow regular steps for extending:

#lvextend ├в L 15000 /dev/vg02/lvol1
#fsadm ├в b 15000M /ldata/ohp1data1 (M or m both will work same)

regds,
R.K.
Don't fix what ain't broke
Suraj K Sankari
Honored Contributor

Re: fsadm error

Hi,

you are giving the below command
fsadm ├в F vxfs ├в b 207072m /ldata/ohp1data1

always fsadm with Online JFS is working with mountpoints(/usr,/tmp...)only so give the mountpoint name insted of /ldata/ohp1data1

Suraj
Avinash Agarkar
Valued Contributor

Re: fsadm error

Hi,

First check the file system is mounted or not
also run the "fstyp lvname" command and check the weather you FS is vxfs or not.

Thanks,
Avinasha
Great Power Comes With Great Responsibility
Jozef_Novak
Respected Contributor

Re: fsadm error

Hi Regina,

if the filesystem is not mounted, use extendfs command to extend it. See extendfs(1m).

J.

Regina Mitchell
Frequent Advisor

Re: fsadm error

Thanks to all. After I created this thread I realized I did not have the two filesystems mounted. I mounted them and was able to execute the fsadm command successfully. Thanks to all that replied.
Regina Mitchell
Frequent Advisor

Re: fsadm error

Shortly after posting my problem I realized I did not have my filesystems mounted. I mounted them and was able to execute fsadm.

The threads confirmed what I did.