- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Extending a volumegroup with mirrored disks
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
12-28-2004 06:57 PM
12-28-2004 06:57 PM
Extending a volumegroup with mirrored disks
I have a question regarding extending volumegroups and mirroring.
I am working with a MS/SG cluster (2 nodes) which are using 2 identical EVA3000 SAN's. All volumegroups are (Mirror/UX) mirrored over those 2 SAN's.
One of the volumegroups is running out of space and I created an extra LUN on both SAN's. The plan is to use vgextend and let the disks join in the existing VG.
Initially I configured the volumegroup using "lvcreate –m 1 –L
So far I have created 2 physical volumes (pvcreate /dev/rdisk/c*t*d*) which I would like to mirror and extend into the existing volumegroup. I am getting a bit lost now in the PV LV VG and so on forest and don't want to *&^ this thing up the last week of the year.
My questions are:
Should I use vgextend to join those 2 new PV's into the volumegroup?
How do I get those 2 new PV's to mirror in the way the 2 existing disks do?
Will there be dataloss (do I have to schedule a restore) and/or must I take the VG offline?
Does vgexport and vgimport on the secondary node take care of the new configuration?
I hope some off you can help me out.
Kind regards,
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2004 07:23 PM
12-28-2004 07:23 PM
Re: Extending a volumegroup with mirrored disks
break the mirror, add the new disk to vg and recreate the miror
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2004 07:23 PM
12-28-2004 07:23 PM
Re: Extending a volumegroup with mirrored disks
1. When you create LUN on EVA3000 you can
assign RAID1-mode to those
ph.disks,which are included on this
virtual LUN. /The task of SAN-admin/
It is enough to mirroring. No action
needs from the side of OS.
2.Find this new LUN from OS, using:
#ioscan -fnC disk
#insf -e
3.Extend existing VG using new dev.files:
#pvcreate /dev/rdsk/c20t4d0
#vgextend vg01 /dev/dsk/c20t4d0
#lvextend ...
#extendfs ... and so on
Regards,Stan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2004 07:37 PM
12-28-2004 07:37 PM
Re: Extending a volumegroup with mirrored disks
In addition if you need mirroring on OS anyway, you can do:
#lvextend -m 1 /dev/vg01/lvol1 ...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2004 07:39 PM
12-28-2004 07:39 PM
Re: Extending a volumegroup with mirrored disks
This is a thread with the same case.
You can see it:
http://forums.itrc.hp.com/service/forums/questionanswer.do?threadId=774044
Regard,
HoangChiCong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2004 07:41 PM
12-28-2004 07:41 PM
Re: Extending a volumegroup with mirrored disks
I have to say it helps me in to the right direction. I should explain the use of 2 EVA's here. They are used to create a redundant environment and placed on different locations. That is why I used (v)raid 5 on the EVA and Mirror/UX between both EVA's for each Unix-used LUN.
I hope there is somebody that can help me out with the other open questions.
Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2004 07:59 PM
12-28-2004 07:59 PM
Re: Extending a volumegroup with mirrored disks
Sunil