- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- increaing lvol in cluster server
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
05-11-2010 11:53 AM
05-11-2010 11:53 AM
increaing lvol in cluster server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2010 12:16 PM
05-11-2010 12:16 PM
Re: increaing lvol in cluster server
Have a look at this thread.
http://forums13.itrc.hp.com/service/forums/questionanswer.do?admit=109447627+1273608899115+28353475&threadId=1392965
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2010 05:42 PM
05-11-2010 05:42 PM
Re: increaing lvol in cluster server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2010 07:48 AM
05-13-2010 07:48 AM
Re: increaing lvol in cluster server
If this is cluster, then you have a shared vg.
You need to do a vgdisplay -v volume_group_name.
If you have any Free PE ex:
Free PE 1485
The only think you need to do is a:
lvextend -L new_size in megas /dev/vg_name/lvol_name
Then you need to resize the FS.
IF you have onlineJFS
Type:
fsadm -F vxfs -b "size"M /mount_point.
If you have any problem reply.
Regards...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2010 07:55 AM
05-13-2010 07:55 AM
Re: increaing lvol in cluster server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2010 02:30 PM
05-14-2010 02:30 PM
Re: increaing lvol in cluster server
If the space is not there, then we need to add the disk, i need to know the thing in that part
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2010 01:13 AM
05-15-2010 01:13 AM
Re: increaing lvol in cluster server
-pvcreate
-vgextend vgname
-lvextend -L
fsadm -b
-vgexport -psv -m /tmp/vgname.mapfile vgname #create a mapfile which should be then transfer to alternate node
on another node
-ll /dev/group/group #to see the major/minor no:
-mkdir /dev/vgname
-mknod /dev/vgname/group c
-vgimport -sv -m /tmp/vgname.mapfile
all the best...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2010 02:22 PM
05-15-2010 02:22 PM
Re: increaing lvol in cluster server
if you want to change volume group configuration in active/active cluster you have two choices. if you have pathces for SNOR capability, you can add disk without bringing down the application. take a look at the document:
http://docs.hp.com/en/7389/LVM_SNOR_whitepaper.pdf
if you can't use SNOR, you must halt the cluster, deactivate volume groups. and follow the other prosedure.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2010 12:19 AM
05-17-2010 12:19 AM
Re: increaing lvol in cluster server
Add new disk on node1
pvcreate
vgextend /dev/vgname
lvextend -L
lvdiskplay
fsadm â b
vxexport â p â s -v â m mapfile vgname
copy the map file to node2
take copy of vgconfiig
cp â p /etc/lvmconf/
Remove vg on node2 for importvg from mapfile.
vgexport /dev/vgname (vgremoved)
mkdir /dev/vgname
mknode
vgimport -v â m
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2010 12:29 AM
05-17-2010 12:29 AM
Re: increaing lvol in cluster server
Sorry some juck on above reply.
See the steps to extend an shared LV on both nodes.
add new disk on node1
vgextend /dev/vgname
lvextend -L
lvdiskplay
fsadm -B
vgexport -p -s -v -m
***copy the map file from node1 to node2
take one configuration copy of that VG
cp -p /etc/lvmconf/vgname
remove vg on node2
vgexport /dev/vgname(for vgimport)
mkdir /dev/
mknode /dev/vgname/group c 64 0x??0000
vgimport -v -m
strings /etc/lvmtab -->check all disks are import including with new disk under same vgname.
check all available lv's on that vg--> ll /dev/vgname/*
I hope above steps will help you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2010 12:30 AM
05-17-2010 12:30 AM
Re: increaing lvol in cluster server
fsadm -B
correct it
fsadm -b