- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Mirroring data from local to SAN storage
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
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
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-31-2005 02:59 AM
тАО05-31-2005 02:59 AM
Mirroring data from local to SAN storage
Can I do:
1. vgextend the volumes with the SAN disks as alternate links
2. vgsync the volume
3. vgreduce the volumes of the local disks (effectively splitting the mirror)
Can this all be done while the server is up and running? Is there a better way to do this while the server is on-line?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2005 03:02 AM
тАО05-31-2005 03:02 AM
Re: Mirroring data from local to SAN storage
I might try:
lvextend -m 1
mirror is created.
lvreduce or split the mirror to remove the local logical volume.
Just a thought.
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
тАО05-31-2005 03:08 AM
тАО05-31-2005 03:08 AM
Re: Mirroring data from local to SAN storage
1) Yes but dont get confused the san disky are NOT alternate links..
Can this all be done while the server is up and running?
You have no other choice with this solution except stopping the applications...
Is there a better way to do this while the server is on-line?
I tried by cpio... if the applications or RDBMS are up this is the only possible alternative to be synchronized
I did it once a few years ago, it works well but be aware of overhead and time - so choose the right moment....
All the best
Victor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2005 03:09 AM
тАО05-31-2005 03:09 AM
Re: Mirroring data from local to SAN storage
Also, there will be some cpu and i/o performance degradation to be observed while the data transfer is in progress. Otherwise, the method is proven working.
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2005 03:33 AM
тАО05-31-2005 03:33 AM
Re: Mirroring data from local to SAN storage
Rob...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2005 03:40 AM
тАО05-31-2005 03:40 AM
Re: Mirroring data from local to SAN storage
Yes this can be done & is frequently employed to do exactly what you're trying to accomplish - move off local to SAN storage.
One caution I would give you is to size the LUNs on the array as closely to the size of the local disks as possible. The reason being that in a mirror situation you are limited to the size of the smallest PV in play. So if you have 9GB disks & the LUNs are 18GB, you'll essentially be wasting 9GB of the LUN.
The only way around that is to backup the VG, destroy it & restore the data to the newly created VG using the LUNs.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2005 03:51 AM
тАО05-31-2005 03:51 AM
Re: Mirroring data from local to SAN storage
Yes it can be done online but will affect performance so do it at a time when utilization is quite low. Another good point what Jeff raised is to check what will be the max. size of PV's (LUNs) supported in your existing VG's.
Find this be "vgdisplay -v /dev/vgname" command. The multiplication odf two parameters PE Size & MAX PE Per PV will give you this size. If this is less then you new LUN's you will not be using full size of your new LUNs after extending VG's to new LUNs.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2005 04:29 AM
тАО05-31-2005 04:29 AM
Re: Mirroring data from local to SAN storage
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2005 04:31 AM
тАО05-31-2005 04:31 AM
Re: Mirroring data from local to SAN storage
Thanks.