1753861 Members
7533 Online
108809 Solutions
New Discussion юеВ

OnlineJFS issue

 
SOLVED
Go to solution
uadm26
Super Advisor

OnlineJFS issue

Hi guys,

There's something wrong, I have a HP-UX B.11.23 ia64 system and OnlineJFS B.11.23.0512 installed, when I try to increase the size in FS /home/user2, the SAM report that it can't umount the FS, but with onlinejfs that error don't make sense. Someone know what is happening?

Thanks for all
4 REPLIES 4
Wouter Jagers
Honored Contributor
Solution

Re: OnlineJFS issue

Hi,

The combination of SAM & LVM frightens me. Also, I have seen the issue before (unable to extend a logical volume through SAM).

Try the command line way:

# lvextend -L /dev/vgxx/lvolxx

# fsadm -F -b /mountpoint

For example:
# lvextend -L 2048 /dev/vg00/lvol4
# fsadm -F vxfs -b 2097152 /tmp

..would increase my /tmp to a total size of 2GB.

Cheers,
Wout
an engineer's aim in a discussion is not to persuade, but to clarify.
Robert-Jan Goossens_1
Honored Contributor

Re: OnlineJFS issue

Hi,

Have a look at the latest cumulative SAM patch for 11.23.

PHCO_34208
http://www4.itrc.hp.com/service/patch/patchDetail.do?patchid=PHCO_34208&sel={hpux:11.23,}&BC=main|search|

Regards,
Robert-Jan
Court Campbell
Honored Contributor

Re: OnlineJFS issue

Just to add to Wouter's statement:

For example:
# lvextend -L 2048 /dev/vg00/lvol4
# fsadm -F vxfs -b 2097152 /tmp

you can add a capital "M" to the end of the megabyte size of both lvextend and fsadm. I always found it more convenient.

New example:
# lvextend -L 2048M /dev/vg00/lvol4
# fsadm -F vxfs -b 2048M /tmp
"The difference between me and you? I will read the man page." and "Respect the hat." and "You could just do a search on ITRC, you don't need to start a thread on a topic that's been answered 100 times already." Oh, and "What. no points???"
uadm26
Super Advisor

Re: OnlineJFS issue

Thanks for all.