- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Replacing LVM 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
02-27-2002 07:02 AM
02-27-2002 07:02 AM
Replacing LVM Disks
EMC symmetrix box presenting 4 disks to the server for each physical spindle.
vxfs file system striped with several hot disks because they share the same spindle.
I can add identical disks for a short time, but I have to give back the same number. Is there a way to move off of just the hot disks? The application is critical and down time must be minimized.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2002 07:06 AM
02-27-2002 07:06 AM
Re: Replacing LVM Disks
I am not sure I understand your question?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2002 07:11 AM
02-27-2002 07:11 AM
Re: Replacing LVM Disks
I am with Ron, I don't quite understand the question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2002 07:22 AM
02-27-2002 07:22 AM
Re: Replacing LVM Disks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2002 07:27 AM
02-27-2002 07:27 AM
Re: Replacing LVM Disks
That being the case, are you asking how to move the data, staying within the same VG, from one LUN to another?
If so, here is what I think you need to do:
# vgextend /dev/dsk/c?t?d? /dev/vg??
and add thew new LUNs from the EMC to your VG. Now you can use the pvmove command to move the extents from one LUN to another within that VG. See 'man pvmove' for more details.
# pvmove /dev/dsk/c1t2d3 /dev/dsk/c3t4d5
will move all extents from the c1t2d3 LUN to the c3t4d5 LUN.
# pvmove -n /dev/vg01/lvol2 /dev/dsk/c1t0d0 /dev/dsk/c2t0d0
Move only the physical extents for logical volume /dev/vg01/lvol2 that are currently on /dev/dsk/c1t0d0 to /dev/dsk/c2t0d0:
This can be done on-the-fly (I think), but be aware that this is a very disk intensive operation so your application response will slow down.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2002 07:29 AM
02-27-2002 07:29 AM
Re: Replacing LVM Disks
For each logical volume:
# lvextend -m 1
# lvreduce -m 0
Regards,
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2002 07:33 AM
02-27-2002 07:33 AM
Re: Replacing LVM Disks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2002 08:47 AM
02-27-2002 08:47 AM
Re: Replacing LVM Disks
It is not an out of the box application. It does cost $$$.
In a non-related question why does my earlier response to this post have N/A as an option for pionts when I am not the author of this thread?
Sorry to cluter this thread with a forum issue.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2002 08:49 AM
02-27-2002 08:49 AM
Re: Replacing LVM Disks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2002 08:51 AM
02-27-2002 08:51 AM
Re: Replacing LVM Disks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2002 08:56 AM
02-27-2002 08:56 AM
Re: Replacing LVM Disks
N/A: The answer was simply a point of clarification to my original question"
I'm not very experienced with the system, yet, and was trying to follow directions.
Would dd be a tool I could use? If anybody's used this tool for disk to disk copy, what buffer size recommendations do you have?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2002 09:23 AM
02-27-2002 09:23 AM
Re: Replacing LVM Disks
This will move the extents from one LUN to another. If you specify an LV and a device file, then it will just move the extents for that LV from one LUN to another. It should also keep you striping configuration as well.