- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: pvmove to multiple PV's
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
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
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
тАО09-25-2007 06:15 AM
тАО09-25-2007 06:15 AM
pvmove to multiple PV's
pvmove /dev/dsk/c1t0d0 /dev/dsk/c2t0d0 /dev/dsk/c3t0d0
I'm hoping to increase the # of spindles in use to help performance.
I've got existing luns (PV's) in just one raid group. I'd like to use pvmove to move them to luns over two new raid groups so I'll have 16 new (faster) disks with the data as opposed to the current 8.
I need the extents in each current PV spread more or less evenly over two different PV's. (This will also leave plenty of empty space on each new PV for new growth.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-25-2007 06:25 AM
тАО09-25-2007 06:25 AM
Re: pvmove to multiple PV's
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-25-2007 06:26 AM
тАО09-25-2007 06:26 AM
Re: pvmove to multiple PV's
The manpages for 'pvmove' simply note that in the absence of a specific target specification (either by pv_path or by physical volume group), then all physical volumes in the volume group are available as a destination.
I think *you* need to specify your target devices if you want control.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-25-2007 06:57 AM
тАО09-25-2007 06:57 AM
Re: pvmove to multiple PV's
# pvmove /dev/dsk/c1t0d0 /dev/dsk/c2t0d0 /dev/dsk/c3t0d0
~cheers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-25-2007 08:40 AM
тАО09-25-2007 08:40 AM
Re: pvmove to multiple PV's
"...pvmove selects the proper physical volumes to be used in order to preserve the allocation policies of the logical volume involved."
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-25-2007 04:46 PM
тАО09-25-2007 04:46 PM
Re: pvmove to multiple PV's
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-25-2007 05:44 PM
тАО09-25-2007 05:44 PM
Re: pvmove to multiple PV's
man pvmove
/usr/sbin/pvmove [-A autobackup] [-n lv_path] source_pv_path
[dest_pv_path ... | dest_pvg_name ...]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-25-2007 06:43 PM
тАО09-25-2007 06:43 PM
Re: pvmove to multiple PV's
pvmove /dev/dsk/c0t0d0 /dev/dsk/c1t0d0 /dev/dsk/c2t0d0
To move all data off disk /dev/dsk/c0t0d0 and let LVM transfer the data to available space within the volume group, enter:
pvmove /dev/dsk/c0t0d0
To move the data in logical volume /dev/vg01/lvol1 from the disk /dev/dsk/c0t0d0 to the disk /dev/dsk/c1t0d0, enter
pvmove -n /dev/vg01/lvol1 /dev/dsk/c0t0d0 /dev/dsk/c1t0d0
Aneesh