LVM Error: Can only set uuid on one volume at once
Error:
[root@cactiDB lvm]# pvcreate -uuid "Disk UUID" --restorefile /etc/lvm/archive/cactiDB_00002-188570652.vg /dev/mpath/mpath11
Can only set uuid on one volume at once
Run `pvcreate --help' for more information.
Solution:
The Problem Occurs when you fire wrong command. The Right Command is :
[root@cactiDB lvm]# pvcreate -uuid "Disk UUID" --restorefile /etc/lvm/archive/cactiDB_00002-188570652.vg /dev/mpath/mpath11
Can only set uuid on one volume at once
Run `pvcreate --help' for more information.
Solution:
The Problem Occurs when you fire wrong command. The Right Command is :
[root@cactiDB lvm]# pvcreate --uuid "Disk UUID" --restorefile /etc/lvm/archive/cactiDB_00002-188570652.vg /dev/mpath/mpath11
Writing physical volume data to disk "/dev/mpath/mpath11"
Physical volume "/dev/mpath/mpath11" successfully created
[root@cactiDB lvm]#
No comments