- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- pvmove error
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
03-16-2005 08:24 AM
03-16-2005 08:24 AM
pvmove error
# pvmove /dev/dsk/c11t12d0 /dev/dsk/c11t2d5
Device file path "/dev/dsk/c11t12d0" is an alternate path
to the Physical Volume. Using Primary Link "/dev/dsk/c9t8d1".
Operation cannot be performed because some of the data on the physical volume
is striped and striped mirroring is not supported. To enable data transfer for
a physical volume through mirroring/reduction, do not specify the striping
options (-i, -I) when creating logical volumes on that physical volume.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2005 08:47 AM
03-16-2005 08:47 AM
Re: pvmove error
What this error message means is that this disk contains at least some striped lvols.
Since there are striped lvols, pvmove wont work.
See the man page for lvcreate for details.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2005 08:56 AM
03-16-2005 08:56 AM
Re: pvmove error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2005 09:01 AM
03-16-2005 09:01 AM
Re: pvmove error
That might give us some ideas.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2005 09:18 AM
03-16-2005 09:18 AM
Re: pvmove error
Kent is right,if there is any striped lvols in that disk it won`t go for a pvmove......And what is that error for alternate disk....why are u not using the primary diak path for command...
Mitra
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2005 12:47 AM
03-17-2005 12:47 AM
Re: pvmove error
pvdisplay /dev/dsk/c11t12d0
Device file path "/dev/dsk/c11t12d0" is an alternate path
to the Physical Volume. Using Primary Link "/dev/dsk/c9t8d1".
--- Physical volumes ---
PV Name /dev/dsk/c9t8d1
PV Name /dev/dsk/c11t12d0 Alternate Link
VG Name /dev/vg04
PV Status available
Allocatable yes
VGDA 2
Cur LV 1
PE Size (Mbytes) 4
Total PE 2157
Free PE 2154
Allocated PE 3
Stale PE 0
IO Timeout (Seconds) default
Autoswitch On
pvdisplay /dev/dsk/c11t2d5
--- Physical volumes ---
PV Name /dev/dsk/c11t2d5
PV Name /dev/dsk/c9t2d5 Alternate Link
VG Name /dev/vg04
PV Status available
Allocatable yes
VGDA 2
Cur LV 1
PE Size (Mbytes) 4
Total PE 2157
Free PE 1000
Allocated PE 1157
Stale PE 0
IO Timeout (Seconds) default
Autoswitch On
lvdisplay /dev/vg04/utl_filelv
--- Logical volumes ---
LV Name /dev/vg04/utl_filelv
VG Name /dev/vg04
LV Permission read/write
LV Status available/syncd
Mirror copies 0
Consistency Recovery MWC
Schedule parallel
LV Size (Mbytes) 12
Current LE 3
Allocated PE 3
Stripes 0
Stripe Size (Kbytes) 0
Bad block on
Allocation strict
IO Timeout (Seconds) default
I tried using the alternate link since I thought that might be the issue. It was not that though....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2005 04:16 AM
03-17-2005 04:16 AM
Re: pvmove error
Regards,
Fred
"Reality is just a point of view." (P. K. D.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2005 05:32 AM
03-17-2005 05:32 AM
Re: pvmove error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2005 03:00 AM
03-18-2005 03:00 AM
Re: pvmove error
What if you use directly primary path ?
Regards,
Fred
"Reality is just a point of view." (P. K. D.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2005 03:05 AM
03-18-2005 03:05 AM
Re: pvmove error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2005 03:25 AM
03-18-2005 03:25 AM
Re: pvmove error
The solution is to create a new lv on the new pv and just copy your data to the new lv.
# lvcreate /dev/vg04
Omit the -l or -L option. This will produce a lv with zero lengh.
# lvextend -L 12 /dev/vg04/
Produce a Lvol with 12MB space.
# newfs -F vxfs /dev/vg04/
# mkdir /tmp_lvol
# mount /dev/vg04/
# cd
# tar cf - . | (cd /tmp_lvol; tar xf - )
Now unmount your old lvol and change the /etc/fstab that you new lvol is mounted to your original mount point.
After you have checked that everthing is ok, you can remove your old lvol.
Roland
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2005 03:28 AM
03-18-2005 03:28 AM
Re: pvmove error
# lvextend -L 12 /dev/vg04/
Roland
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2005 04:15 AM
03-18-2005 04:15 AM
Re: pvmove error
# pvmove -n /dev/vg??/lvol? /dev/dsk/c11t12d0 /dev/dsk/c11t2d5
This allows you to move a specific LV from one disk to another. Try that and see what happens.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2005 05:27 AM
03-18-2005 05:27 AM