- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Mirroring a Concatenated Volume to a Striped Volum...
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-02-2004 06:12 AM
06-02-2004 06:12 AM
Mirroring a Concatenated Volume to a Striped Volume
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2004 06:17 AM
06-02-2004 06:17 AM
Re: Mirroring a Concatenated Volume to a Striped Volume
You either stripe or mirror.
I've seen that posted a lot, so confidence is high. I only mirror, raid 1, so I've never tried.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2004 06:18 AM
06-02-2004 06:18 AM
Re: Mirroring a Concatenated Volume to a Striped Volume
# man lvcreate
For more details.
If you want to stripe and mirror with HP-UX, you'll have to invest in Veritas Volume Manager for HP-UX.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2004 06:19 AM
06-02-2004 06:19 AM
Re: Mirroring a Concatenated Volume to a Striped Volume
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2004 06:20 AM
06-02-2004 06:20 AM
Re: Mirroring a Concatenated Volume to a Striped Volume
Not sure if this is possible. Mirroring take place within one volumegroup. I would go for a new striped volumegroup and a fbackup and frecover.
May be s.o. else knows a way.
Regards,
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2004 07:34 AM
06-02-2004 07:34 AM
Re: Mirroring a Concatenated Volume to a Striped Volume
basicaly I have a non-mirrored LV on one disks and want to mirror and stripe it over 8 disks.. My plan .. and this is UNTESTED and may not work..
0 - make sure my /etc/lvmpvg contains two groups of disks
VG vgdb
PVG primary
/dev/dsk/c0t8d0
/dev/dsk/c1t9d0
/dev/dsk/c0t10d0
/dev/dsk/c1t11d0
PVG mirror
/dev/dsk/c1t8d0
/dev/dsk/c0t9d0
/dev/dsk/c1t10d0
/dev/dsk/c0t11d0
my original LV is called /dev/vgdb/data and exists on /dev/dsk/c0t8d0
1 mirror original LV onto a striped LV
lvextend -m 1 /dev/vgdb/data primary
2 reduce the original LV out
lvreuce -m 0 /dev/vgdb/data /dev/dsk/c0t8d0
3 mirror up the stripeed LV
lvextend -m 1 /dev/vgdb/data mirror
If this works I'll jump for joy as there is no down time required.. If not I plan to do the following
1 - create a mirrored striped LV
lvcreate -D y -s g -m 1 -n newdata -L 2048 vgdb
2 - stop database
3 - dd info from one LV to the other
dd if=/dev/vgdb/rdata bs=4096k of=/dev/vgdb/rnewdata
4 - rename newdata
mv /dev/vgdb/rdata /dev/vgdb/rolddata
mv /dev/vgdb/data /dev/vgdb/olddata
mv /dev/vgdb/rnewdata /dev/vgdb/rdata
mv /dev/vgdb/newdata /dev/vgdb/data
5 - start database
If 6 works delete olddata
lvreduce -f /dev/vgdb/olddata,
else backout!!!
Tim