- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Increasing the size of several logical volume ...
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-06-2008 04:00 PM
06-06-2008 04:00 PM
Increasing the size of several logical volume using online JFS within a ServiceGuard cluster
I need to increase the size of several logical volumes within a serviceguard cluster. The system has online jfs.
I have the Veritas Enterprise Administrator utility available via SAM. Is that the utility that I should use to complete this task, or is there a better alternative? Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2008 04:51 PM
06-06-2008 04:51 PM
Re: Increasing the size of several logical volume using online JFS within a ServiceGuard cluster
http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1238570
Regards,
Asif Sharif
Asif Sharif
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2008 06:41 PM
06-06-2008 06:41 PM
Re: Increasing the size of several logical volume using online JFS within a ServiceGuard cluster
lvextend -L 256 /dev/vg07/lvolx
256 MB is now the Total size of the LV
2. Extend the filesystem:
# fsadm -b 262144 /FS
The size is in blocks, so multiply the logical volume size by 1024
(256 x 1024 = 262144)
>> If the VG is only activated in only One node (Active - Passive Cluster) the above two steps are enough.
NOTE: If you are adding extending the VG (adding disk to a VG) then you have to perform the vgexport and vgimport operations.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2008 11:25 PM
06-06-2008 11:25 PM
Re: Increasing the size of several logical volume using online JFS within a ServiceGuard cluster
To me the better alternative is always the commands. Alos you have to check whether there are mirrors on the LVs.
First check the current size of the LV:
lvdisplay /dev/vg00/lvol1|grep "LV Size"
(chnage the LV name with your LV - you will get the current size in Mbytes)
extend to the new size:
lvextend -L 2048 /dev/vg00/lvol1
(here you are saying that you want to increase the lvol1 to 2048MB which would be the new size. You have to always have a backup prior to doing this, if you are not comfortable with the tasks).
fsadm -b 2048m /dirname (mountpoint of the LV)
You are extending the file system to 2048MB.
Make sure that the size will be always greater than the current size.
Regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2008 10:12 AM
06-07-2008 10:12 AM
Re: Increasing the size of several logical volume using online JFS within a ServiceGuard cluster
Dear Andre
Increasing the size of several logical volume using online JFS within a ServiceGuard cluster?
u don't worry about clustering env there.
but if u are doing any thing on clustered
volume group u have to deactivate the clustered volume group first. but if u are doing other volume groups u can use lvextend and fsadm command to extend logical volume and file system, but in case of clustered volume group u have to follow up some other additional steps. ok
thanks and regards
Sajjad