- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- resizing or extending a logical volume within sam
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
06-16-2008 04:44 AM
06-16-2008 04:44 AM
resizing or extending a logical volume within sam
I have a serviceguard cluster running on two hp-ux 11.11 systems. I have already gone through the motions of exporting and importing the newly resized volume group in question to both nodes. I now want to resize or extend the logical volumes within the volume group via SAM.
I started SAM, and checked under volume groups and logical volumes, but did not see a reference for resizing. Where and/or what else do I need to do in order to accomplish this task? Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2008 04:53 AM
06-16-2008 04:53 AM
Re: resizing or extending a logical volume within sam
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2008 04:55 AM
06-16-2008 04:55 AM
Re: resizing or extending a logical volume within sam
lvextend -L 20000 /dev/vg01/lv0l1
(extend the LV to 20000MB)
if you have online JFS, use fsadm
fsadm -b 20000M /export
(extend the /export mountpoint which is mounted with /dev/vg01/lvol1 to 20000M
if no online JFS:
umount /export (the mountpoint)
extendfs /dev/vg0l/rlvol1 (use raw name)
In SAM
From Disks and Filesystems/Logical Volumes, select the LV, Action Menu, Increase Size
Regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2008 05:08 AM
06-16-2008 05:08 AM
Re: resizing or extending a logical volume within sam
A. lvextend â L 4000 /dev/vgxx/lvolx (increases the size of the lvol)
Note: the â L option is not used to specify the amount of space you want to â growâ the lvol by. It is used to specify TOTAL space needed after the lvextend. I used 4000 as a reminder that we are â growingâ the file system by 4 Gig. Also lvextend recognized sizes by Megâ s by default.)
B. fsadm â F vxfs â b 39000M /filesystem
(IF online JFS) if not use
umount and remount
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2008 06:03 AM
06-16-2008 06:03 AM
Re: resizing or extending a logical volume within sam
I started running the lvextend and fsadm command on the logical volumes of the volume group. Altogether there are seven logical volumes that are to be resized.
The first logical volume was successfully resized, but the second one did not repeat the success of th first. The error message that appeared on-screen was the following:
vxfs fsadm: /dev/vg102/lvol3 is not the root inode of a vxfs filesystem.
What does this mean, and what do I need to do to resize this and the subsequent logical volumes?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2008 07:01 AM
06-16-2008 07:01 AM
Re: resizing or extending a logical volume within sam
Please post the entire message, include command given and output from command.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2008 07:02 AM
06-16-2008 07:02 AM
Re: resizing or extending a logical volume within sam
Please post the entire message, include command given and output from command.
I would think by the error given that it is not a mounted filesystem or is not a mount point.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2008 07:04 AM
06-16-2008 07:04 AM
Re: resizing or extending a logical volume within sam
fsadm â F vxfs â b XXXXM/mountpoint
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2008 07:07 AM
06-16-2008 07:07 AM
Re: resizing or extending a logical volume within sam
fsadm -F vxfs -b xxxxM /mountpoint
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2008 07:22 AM
06-16-2008 07:22 AM
Re: resizing or extending a logical volume within sam
I discovered my mistake: When I ran the fsadm command, I put in the hardware path as opposed to the filesystem path. Sorry about that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2008 07:51 AM
06-16-2008 07:51 AM
Re: resizing or extending a logical volume within sam
Don't forget the points!!!!!