- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Extend filesystem
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2008 08:35 AM
11-17-2008 08:35 AM
Extend filesystem
O/S : HP-UX 11.31
We have two servers which are in cluster and sharing the disk space from EVA.
I have attached the output pf bdf and vgdisplay command.
I want to extend follwing filesystem from
2 GB to 10 GB
/dev/vg02/lvol5 -- /oracle/PRD
I request you please guide me for the same.
As I am new to HP unix step by step guidance will be helpful to me either using command line or SAM.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2008 08:54 AM
11-17-2008 08:54 AM
Re: Extend filesystem
#lvextend -L 10240M /dev/vg02/lvol5
and if you have OnlineJFS - extend file system without unmount:
#fsadm -f vxfs -b 10240M /oracle/PRD
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2008 01:31 PM
11-17-2008 01:31 PM
Re: Extend filesystem
We don't have online JFS.
So I will proceed with following steps
1. lvextend -L 10240M /dev/vg02/lvol5
2. umount dev/vg02/lvol5
3. mount dev/vg02/lvol5 /oracle/PRD
I have confusion related to cluster. Two servers which are in cluster are sharing this filesystem.
whether i have to include some steps for the same?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2008 05:06 PM
11-17-2008 05:06 PM
Re: Extend filesystem
but when issue the below command
#vxlicense -p
shows that ..the JFS is not licensed..can we proceed with fsadm?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2008 07:08 PM
11-17-2008 07:08 PM
Re: Extend filesystem
IF you d'not have ONLINE _JFS .. :) no choice dude .. :( you have to umount and extendfs
Questions:-
/dev/vg02/lvol5 -- /oracle/PRD --> its part of your cluster "Package" ..?
if (Yes ) you need halt the pkg and follow as per below
# cmhaltpkg -v
(package will be halted)
than proceed to lvextend
# vgchange -c n /dev/vg02
# vgchange -a y /dev/vg02
# lvextend -L
# extendfs -F vxfs /dev/vg02/rlvol5
# vgchange -a n /dev/vg02
# vgchange -c y /dev/vg02
# cmrunpkg -n
# cmmodpkg -e
Hi Idham,
>>> How if we have the online jFS..
but when issue the below command
#vxlicense -p
shows that ..the JFS is not licensed..can we proceed with fsadm? <<<
if is not licensed , you can't do fsadm ,
may be you can try your Luck .. :)
# vxenablef -a
# vxenablef
Thanks,
Johnson
(Guys last but not least assign points .. :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2008 06:25 AM
11-18-2008 06:25 AM
Re: Extend filesystem
# vxlicrep
Creating a report on all VERITAS products installed on this system
-----------------***********************-----------------
License Key = 010449565889805115946529
Product Name = VERITAS File System
License Type = DEMO <<----
Site License = YES
Features :=
HP_OnlineJFS = Disabled <<----
2. To update the Online JFS license from "expired/DEMO" to
"active/Permanent", reinstall the B3929CA product from the Application CD/DVD media.
Per http://www.hp.com/softwarereleases/releases-media2/media/5013-4941.htm
the product is on CD #1
CPL Product: B3929CA
Codeword Req.: Yes
Size: 4239
Description: HP OnLineJFS
NOTE that the swinstall will not interfere with critical application activities, nor will it require a reboot.
If necessary, use the http://licensing.hp.com website to acquire a codeword.
And don't forget to grow the file system after growing the logical volume!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2008 05:49 PM
11-18-2008 05:49 PM
Re: Extend filesystem
I have increse the size of filesystem as suggested by Johnson Punniyalingam.