* [linux-lvm] lvm lost after reboot !? how to recover UUID?
@ 2005-07-18 15:32 kitchhiking.org
2005-07-18 15:36 ` Alan Jurgensen
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: kitchhiking.org @ 2005-07-18 15:32 UTC (permalink / raw)
To: linux-lvm
Hi,
I'm using LVM only for about a month now and it ran flawless until
today.
After rebooting the system all my PVs/VGs/LVs were gone, "mount" saying
e.g.:
> mount: /dev/WD2000JB-182GB/srv is not a valid block device
/etc/lvmtab now is an empty file, /etc/lvmtab.d, /etc/lvm/backup and
/etc/lvm/archive are empty as well.
This is strange because etc/lvm/lvm.conf says that backups and archives
should be created but i can't find anything.
What remains are some files in /etc/lvmconf named
"WD2000JB-182GB.conf" and
"IBM80G2.conf" and some older versions of those.
I read on the web *) about recovering the data using pvcreate/
vgcfgrestore,
but since "/etc/lvm/backup" and "/etc/lvm/archive" are empty I don't
know
how to retrieve the UUIDs of my PVs.
*) http://codeworks.gnomedia.com/archives/2005/general/lvm_recovery/
Of course I don't have any further backup of these, since I first
read about their
importance doing that when digging for hints howto recover my data.
(stupid me (tm))
The System is running Debian Sarge stable (2.4.27-2) on a
P3/Intel BX with 3 harddrives attached to it. LVM is Version 1.08
from /etc/fstab:
#lvm
/dev/WD2000JB-182GB/mld /home/mld auto
suid,dev,exec 0 0
/dev/WD2000JB-182GB/srv /srv/foo auto
suid,noexec,nodev 0 0
/dev/IBM80G2/costa_home /home/costa auto
suid,noexec,nodev 0 0
where:
/dev/WD2000JB-182GB/ is situated on /dev/hda (a 200GB Harddisk)
/dev/IBM80G2/costa_home sits on /dev/hde (an 80GB Harddisk attached
to an onboard
HPT366 ATA66 Controller)
pvdisplay /dev/WD2000JB-182GB says:
> cserver:/etc/lvm# pvdisplay /dev/hde
> pvdisplay -- ERROR "pv_read(): pv_create_name_from_kdev_t" no
VALID physical volume "/dev/hde"
vgdisplay just returns:
> cserver:/etc/lvm# vgdisplay
> vgdisplay -- no volume groups found
If any of you has a clou how i could recover my data (or just the
UUIDs) or
maybe rebuild the LVM I'd be really grateful.
Hope to hear from you,
Constantin
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [linux-lvm] lvm lost after reboot !? how to recover UUID?
2005-07-18 15:32 [linux-lvm] lvm lost after reboot !? how to recover UUID? kitchhiking.org
@ 2005-07-18 15:36 ` Alan Jurgensen
2005-07-18 16:05 ` kitchhiking.org
2005-07-19 0:00 ` [linux-lvm] PVs not found (kernel 2.4<->devfs?) [was: lvm lost after reboot!?] Constantin Mercier
2005-07-19 8:28 ` [linux-lvm] lvm lost after reboot !? how to recover UUID? GARIN N Ext ROSI/SIPROD
2 siblings, 1 reply; 6+ messages in thread
From: Alan Jurgensen @ 2005-07-18 15:36 UTC (permalink / raw)
To: LVM general discussion and development
First figure out if your disks are there: dmesg|grep [sh]d
Check for partitions: fdisk -l
then see whether LVM stuff is there: pvscan ; vgscan
Look at your distro's boot-up process.... maybe you installed a new
kernel and forgot to include the initrd that activates the VGs (via:
vgchange -a y)
Or maybe you enabled devfs or something, and the discs now show up with
a different device path.
kitchhiking.org wrote:
> Hi,
>
> I'm using LVM only for about a month now and it ran flawless until
> today.
>
> After rebooting the system all my PVs/VGs/LVs were gone, "mount" saying
> e.g.:
>
> > mount: /dev/WD2000JB-182GB/srv is not a valid block device
>
> /etc/lvmtab now is an empty file, /etc/lvmtab.d, /etc/lvm/backup and
> /etc/lvm/archive are empty as well.
>
> This is strange because etc/lvm/lvm.conf says that backups and archives
> should be created but i can't find anything.
>
> What remains are some files in /etc/lvmconf named
> "WD2000JB-182GB.conf" and
> "IBM80G2.conf" and some older versions of those.
>
> I read on the web *) about recovering the data using pvcreate/
> vgcfgrestore,
> but since "/etc/lvm/backup" and "/etc/lvm/archive" are empty I don't
> know
> how to retrieve the UUIDs of my PVs.
>
> *) http://codeworks.gnomedia.com/archives/2005/general/lvm_recovery/
>
> Of course I don't have any further backup of these, since I first
> read about their
> importance doing that when digging for hints howto recover my data.
>
> (stupid me (tm))
>
> The System is running Debian Sarge stable (2.4.27-2) on a
> P3/Intel BX with 3 harddrives attached to it. LVM is Version 1.08
>
> from /etc/fstab:
>
> #lvm
> /dev/WD2000JB-182GB/mld /home/mld auto
> suid,dev,exec 0 0
> /dev/WD2000JB-182GB/srv /srv/foo auto
> suid,noexec,nodev 0 0
> /dev/IBM80G2/costa_home /home/costa auto
> suid,noexec,nodev 0 0
>
> where:
>
> /dev/WD2000JB-182GB/ is situated on /dev/hda (a 200GB Harddisk)
> /dev/IBM80G2/costa_home sits on /dev/hde (an 80GB Harddisk attached
> to an onboard
> HPT366 ATA66 Controller)
>
> pvdisplay /dev/WD2000JB-182GB says:
>
> > cserver:/etc/lvm# pvdisplay /dev/hde
> > pvdisplay -- ERROR "pv_read(): pv_create_name_from_kdev_t" no VALID
> physical volume "/dev/hde"
>
> vgdisplay just returns:
>
> > cserver:/etc/lvm# vgdisplay
> > vgdisplay -- no volume groups found
>
> If any of you has a clou how i could recover my data (or just the
> UUIDs) or
> maybe rebuild the LVM I'd be really grateful.
>
> Hope to hear from you,
> Constantin
>
> _______________________________________________
> linux-lvm mailing list
> linux-lvm@redhat.com
> https://www.redhat.com/mailman/listinfo/linux-lvm
> read the LVM HOW-TO at http://tldp.org/HOWTO/LVM-HOWTO/
--
----------------------------------------------------------------------
Alan W. Jurgensen - Berbee Information Networks - jurgensen@berbee.com
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [linux-lvm] lvm lost after reboot !? how to recover UUID?
2005-07-18 15:36 ` Alan Jurgensen
@ 2005-07-18 16:05 ` kitchhiking.org
0 siblings, 0 replies; 6+ messages in thread
From: kitchhiking.org @ 2005-07-18 16:05 UTC (permalink / raw)
To: LVM general discussion and development
Hi Alan,
first of all thx for the quick response.
I already checked for the physical presence and function of the
disks, also checked SMART parameters with
smartctl -> everything is fine.
I changed nothing to the installed system. No new kernel, nothing.
devfs was enabled already before.
pvdisplay/vgdisplay didn't find anything (see my previous post).
vgchange -a y can't find a VG, too.
I have absolutely no clue what happened. I already thought maybe
there were still some filesystem writes cached
and non flushed, when I rebooted but that would be really strange...
Any more ideas?
Regards,
Constantin
Am 18.07.2005 um 17:36 schrieb Alan Jurgensen:
> First figure out if your disks are there: dmesg|grep [sh]d
> Check for partitions: fdisk -l
> then see whether LVM stuff is there: pvscan ; vgscan
> Look at your distro's boot-up process.... maybe you installed a new
> kernel and forgot to include the initrd that activates the VGs
> (via: vgchange -a y)
> Or maybe you enabled devfs or something, and the discs now show up
> with a different device path.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [linux-lvm] PVs not found (kernel 2.4<->devfs?) [was: lvm lost after reboot!?]
2005-07-18 15:32 [linux-lvm] lvm lost after reboot !? how to recover UUID? kitchhiking.org
2005-07-18 15:36 ` Alan Jurgensen
@ 2005-07-19 0:00 ` Constantin Mercier
2005-07-19 8:28 ` [linux-lvm] lvm lost after reboot !? how to recover UUID? GARIN N Ext ROSI/SIPROD
2 siblings, 0 replies; 6+ messages in thread
From: Constantin Mercier @ 2005-07-19 0:00 UTC (permalink / raw)
To: LVM general discussion and development
Hi,
I'm still trying to solve the problem explained earlier (see
quote below) and maybe understood better now what might be
relevant information after digging a bit deeper.
-----
What happened:
System: Debian 3.1 (Sarge) / 2.4.27-2 (standard 2.4 kernel from
netinstall)
# dmesg|grep -B1 -i lvm
device-mapper: 4.1.1-ioctl (2004-04-07) initialised: dm-devel@redhat.com
LVM version 1.0.8(17/11/2003) module loaded
2 VGs, each on an own partition/disk, so no spanning
Disks are working fine (/ and /boot are conventional partions on /dev/
hda,
VG WD2000JB-182GB is on /dev/hda4, machine boots fine)
I rebooted the system today and afterwards the LVs did not mount:
cserver:~# cat /var/log/boot|grep -i "block device"
Tue Jul 19 03:16:56 2005: mount: /dev/WD2000JB-182GB/mld is not a
valid block device
Tue Jul 19 03:16:56 2005: mount: /dev/WD2000JB-182GB/srv is not a
valid block device
Tue Jul 19 03:16:56 2005: mount: /dev/IBM80G2/costa is not a valid
block device
I tried a hint from Heinz:
# cserver:/# cp /etc/lvmconf/WD2000JB-182GB.conf /etc/lvmtab.d/
# cserver:/# echo -ne "WD2000JB-182GB\0" > /etc/lvmtab
but then:
# vgchange -ay -v WD2000JB-182GB
vgchange -- locking logical volume manager
vgchange -- using volume group(s) on command line
vgchange -- checking volume group name "WD2000JB-182GB"
vgchange -- checking existence of volume group "WD2000JB-182GB"
vgchange -- reading volume group data for "WD2000JB-182GB" from lvmtab
vgchange -- checking volume group consistency of "WD2000JB-182GB"
vgchange -- checking if all physical volumes of volume group
"WD2000JB-182GB" are available
vgchange -- ERROR: can't get name(s) of physical volumes
vgchange -- Please check, if /proc is mounted
-----
Hints:
/proc/lvm _is_ mounted
I read a post in [linux-lvm] *) (similar trouble with LVM after
mounting a SCSI cd-writer) and recalled I had attached
a USB-stick before rebooting.
*) https://www.redhat.com/archives/linux-lvm/2002-January/msg00318.html
devfs seems to be enabled:
# dmesg|grep -i devfs
devfs: v1.12c (20020818) Richard Gooch (rgooch@atnf.csiro.au)
devfs: boot_options: 0x0
but not used. But when I booted with the usb stick attached it might
have
mounted (usbdevfs)?
my /proc/partitions looks like
major minor #blocks name rio rmerge rsect ruse wio wmerge wsect
wuse running use aveq
33 0 80418240 ide/host2/bus0/target0/lun0/disc
33 1 80413326 ide/host2/bus0/target0/lun0/part1
22 0 712618 hdc
3 0 195360984 ide/host0/bus0/target0/lun0/disc
3 1 48163 ide/host0/bus0/target0/lun0/part1
3 2 489982 ide/host0/bus0/target0/lun0/part2
3 3 4883760 ide/host0/bus0/target0/lun0/part3
3 4 189936495 ide/host0/bus0/target0/lun0/part4
3 64 80418240 ide/host0/bus0/target1/lun0/disc
3 65 80418208 ide/host0/bus0/target1/lun0/part1
/proc/partitions looks like:
major minor #blocks name rio rmerge rsect ruse wio wmerge wsect
wuse running use aveq
33 0 80418240 ide/host2/bus0/target0/lun0/disc 5084 46140
102448 5800 0 0 0 0 -2 10974830 21005752
33 1 80413326 ide/host2/bus0/target0/lun0/part1 2 6 16 0 0 0
0 0 0 0 0
22 0 712618 hdc 23 6 112 4540 0 0 0 0 -158 10963830 41273884
3 0 195360984 ide/host0/bus0/target0/lun0/disc 25141 147207
504590 78200 6251 13538 158714 72850 -2 10971270 21150982
3 1 48163 ide/host0/bus0/target0/lun0/part1 29 553 1164
240 12 5 34 850 0 740 1090
3 2 489982 ide/host0/bus0/target0/lun0/part2 1 0 8 10 0 0
0 0 0 10 10
3 3 4883760 ide/host0/bus0/target0/lun0/part3 10688 16077
213418 32450 6239 13533 158680 72000 0 28160 104450
3 4 189936495 ide/host0/bus0/target0/lun0/part4 9 27 72 0 0
0 0 0 0 0 0
3 64 80418240 ide/host0/bus0/target1/lun0/disc 19 61 226 100
3 0 24 10 -2 10974860 21000062
3 65 80418208 ide/host0/bus0/target1/lun0/part1 12 0 90 30 3
0 24 10 0 40 40
Alan was so kind to give a couple of advises but I admittedly think
I could not provide enough detail to make him able to help me out.
Sorry for being so unstructured in my eralier descriptions,
I was a bit panicking earlier the day.
I'd be really grateful for any further advice.
TIA for your efforts,
Constantin
> Constantin Mercier wrote:
> Hi,
>
> I'm using LVM only for about a month now and it ran flawless until
> today.
>
> After rebooting the system all my PVs/VGs/LVs were gone, "mount"
> saying
> e.g.:
>
> > mount: /dev/WD2000JB-182GB/srv is not a valid block device
>
> /etc/lvmtab now is an empty file, /etc/lvmtab.d, /etc/lvm/backup and
> /etc/lvm/archive are empty as well.
>
> This is strange because etc/lvm/lvm.conf says that backups and
> archives
> should be created but i can't find anything.
>
> What remains are some files in /etc/lvmconf named
> "WD2000JB-182GB.conf" and
> "IBM80G2.conf" and some older versions of those.
>
> I read on the web *) about recovering the data using pvcreate/
> vgcfgrestore,
> but since "/etc/lvm/backup" and "/etc/lvm/archive" are empty I
> don't know
> how to retrieve the UUIDs of my PVs.
>
> *) http://codeworks.gnomedia.com/archives/2005/general/lvm_recovery/
>
> Of course I don't have any further backup of these, since I first
> read about their
> importance doing that when digging for hints howto recover my data.
>
> (stupid me (tm))
>
> The System is running Debian Sarge stable (2.4.27) on a
> P3/Intel BX with 3 harddrives attached to it. LVM is Version 1.08
>
> from /etc/fstab:
>
> #lvm
> /dev/WD2000JB-182GB/mld /home/mld auto
> suid,dev,exec 0 0
> /dev/WD2000JB-182GB/srv /srv/foo auto
> suid,noexec,nodev 0 0
> /dev/IBM80G2/costa_home /home/costa auto
> suid,noexec,nodev 0 0
>
> where:
>
> /dev/WD2000JB-182GB/ is situated on /dev/hda (a 200GB Harddisk)
> /dev/IBM80G2/costa_home sits on /dev/hde (an 80GB Harddisk attached
> to an onboard
> HPT366 ATA66 Controller)
>
> pvdisplay /dev/WD2000JB-182GB says:
>
> > cserver:/etc/lvm# pvdisplay /dev/hde
> > pvdisplay -- ERROR "pv_read(): pv_create_name_from_kdev_t" no
> VALID physical volume "/dev/hde"
>
> vgdisplay just returns:
>
> > cserver:/etc/lvm# vgdisplay
> > vgdisplay -- no volume groups found
>
> If any of you has a clou how i could recover my data (or just the
> UUIDs) or
> maybe rebuild the LVM I'd be really grateful.
>
> Hope to hear from you,
> Constantin
>
> _______________________________________________
> linux-lvm mailing list
> linux-lvm@redhat.com
> https://www.redhat.com/mailman/listinfo/linux-lvm
> read the LVM HOW-TO at http://tldp.org/HOWTO/LVM-HOWTO/
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [linux-lvm] lvm lost after reboot !? how to recover UUID?
2005-07-18 15:32 [linux-lvm] lvm lost after reboot !? how to recover UUID? kitchhiking.org
2005-07-18 15:36 ` Alan Jurgensen
2005-07-19 0:00 ` [linux-lvm] PVs not found (kernel 2.4<->devfs?) [was: lvm lost after reboot!?] Constantin Mercier
@ 2005-07-19 8:28 ` GARIN N Ext ROSI/SIPROD
2005-07-19 11:46 ` [linux-lvm] solved: lvm lost after reboot !? Constantin Mercier
2 siblings, 1 reply; 6+ messages in thread
From: GARIN N Ext ROSI/SIPROD @ 2005-07-19 8:28 UTC (permalink / raw)
To: LVM general discussion and development
kitchhiking.org a �crit :
> Hi,
>
> I'm using LVM only for about a month now and it ran flawless until
> today.
>
> After rebooting the system all my PVs/VGs/LVs were gone, "mount" saying
> e.g.:
>
> > mount: /dev/WD2000JB-182GB/srv is not a valid block device
>
> /etc/lvmtab now is an empty file, /etc/lvmtab.d, /etc/lvm/backup and
> /etc/lvm/archive are empty as well.
>
> This is strange because etc/lvm/lvm.conf says that backups and archives
> should be created but i can't find anything.
>
> What remains are some files in /etc/lvmconf named
> "WD2000JB-182GB.conf" and
> "IBM80G2.conf" and some older versions of those.
>
> I read on the web *) about recovering the data using pvcreate/
> vgcfgrestore,
> but since "/etc/lvm/backup" and "/etc/lvm/archive" are empty I don't
> know
> how to retrieve the UUIDs of my PVs.
> *) http://codeworks.gnomedia.com/archives/2005/general/lvm_recovery/
>
> Of course I don't have any further backup of these, since I first
> read about their
> importance doing that when digging for hints howto recover my data.
>
> (stupid me (tm))
>
> The System is running Debian Sarge stable (2.4.27-2) on a
> P3/Intel BX with 3 harddrives attached to it. LVM is Version 1.08
>
> from /etc/fstab:
>
> #lvm
> /dev/WD2000JB-182GB/mld /home/mld auto
> suid,dev,exec 0 0
> /dev/WD2000JB-182GB/srv /srv/foo auto
> suid,noexec,nodev 0 0
> /dev/IBM80G2/costa_home /home/costa auto
> suid,noexec,nodev 0 0
>
> where:
>
> /dev/WD2000JB-182GB/ is situated on /dev/hda (a 200GB Harddisk)
> /dev/IBM80G2/costa_home sits on /dev/hde (an 80GB Harddisk attached
> to an onboard
> HPT366 ATA66 Controller)
>
> pvdisplay /dev/WD2000JB-182GB says:
>
> > cserver:/etc/lvm# pvdisplay /dev/hde
> > pvdisplay -- ERROR "pv_read(): pv_create_name_from_kdev_t" no VALID
> physical volume "/dev/hde"
>
> vgdisplay just returns:
>
> > cserver:/etc/lvm# vgdisplay
> > vgdisplay -- no volume groups found
>
> If any of you has a clou how i could recover my data (or just the
> UUIDs) or
> maybe rebuild the LVM I'd be really grateful.
>
> Hope to hear from you,
> Constantin
>
> _______________________________________________
> linux-lvm mailing list
> linux-lvm@redhat.com
> https://www.redhat.com/mailman/listinfo/linux-lvm
> read the LVM HOW-TO at http://tldp.org/HOWTO/LVM-HOWTO/
>
Hi,
To retrieve the UUIDs of your PVs :
[root@pn root]# pvscan -u
pvscan -- reading all physical volumes (this may take a while...)
pvscan -- ACTIVE PV "/dev/sdas" with UUID
"02MxKG-wGQT-FpaX-kj1j-aIGi-NXPM-7t38Bt" of VG "datavg" [33.66 GB / 0 free]
pvscan -- ACTIVE PV "/dev/sdat" with UUID
"BRRj5q-taYQ-hz5c-Hull-1vlX-PeGQ-lngHG0" of VG "datavg" [33.66 GB / 864
MB free]
pvscan -- ACTIVE PV "/dev/sda2" with UUID
"EIfzic-F5XB-yqYr-5wY7-lGSQ-gglM-6KsmF3" of VG "rootvg" [33.60 GB / 9.89
GB free]
pvscan -- ACTIVE PV "/dev/sdb " with UUID
"mhVisK-IgAk-F6m3-RDjG-TJ1T-cH6S-tmeDPs" of VG "datavg" [33.66 GB / 0 free]
pvscan -- ACTIVE PV "/dev/sdc " with UUID
"Xe03YQ-6gTw-M7DA-0ODR-sfXT-Ti1v-527o1W" of VG "datavg" [33.66 GB / 0 free]
pvscan -- ACTIVE PV "/dev/sdd " with UUID
"tL0Ew7-OcSB-2mbD-r0yH-MRvY-7DSM-MDzzRv" of VG "datavg" [33.66 GB / 0 free]
pvscan -- ACTIVE PV "/dev/sde " with UUID
"QNEj7S-r445-xZd3-WVyP-EFU9-WEQS-FnIx38" of VG "datavg" [33.66 GB / 0 free]
pvscan -- ACTIVE PV "/dev/sdf " with UUID
"OUL3A2-h1EM-v8w8-Y2UN-vii8-79Qo-7hloOj" of VG "datavg" [33.66 GB / 0 free]
pvscan -- ACTIVE PV "/dev/sdg " with UUID
"4ryusb-84Et-22md-QwaQ-Jk3w-iXVB-r5p4gj" of VG "datavg" [33.66 GB / 0 free]
or
[root@pn root]# pvscan -u | sed -e 's/["|-]//g'
pvscan ACTIVE PV /dev/sdas with UUID 02MxKGwGQTFpaXkj1jaIGiNXPM7t38Bt
of VG datavg [33.66 GB / 0 free]
pvscan ACTIVE PV /dev/sdat with UUID BRRj5qtaYQhz5cHull1vlXPeGQlngHG0
of VG datavg [33.66 GB / 864 MB free]
pvscan ACTIVE PV /dev/sda2 with UUID EIfzicF5XByqYr5wY7lGSQgglM6KsmF3
of VG rootvg [33.60 GB / 9.89 GB free]
pvscan ACTIVE PV /dev/sdb with UUID mhVisKIgAkF6m3RDjGTJ1TcH6StmeDPs
of VG datavg [33.66 GB / 0 free]
pvscan ACTIVE PV /dev/sdc with UUID Xe03YQ6gTwM7DA0ODRsfXTTi1v527o1W
of VG datavg [33.66 GB / 0 free]
pvscan ACTIVE PV /dev/sdd with UUID tL0Ew7OcSB2mbDr0yHMRvY7DSMMDzzRv
of VG datavg [33.66 GB / 0 free]
pvscan ACTIVE PV /dev/sde with UUID QNEj7Sr445xZd3WVyPEFU9WEQSFnIx38
of VG datavg [33.66 GB / 0 free]
pvscan ACTIVE PV /dev/sdf with UUID OUL3A2h1EMv8w8Y2UNvii879Qo7hloOj
of VG datavg [33.66 GB / 0 free]
pvscan ACTIVE PV /dev/sdg with UUID 4ryusb84Et22mdQwaQJk3wiXVBr5p4gj
of VG datavg [33.66 GB / 0 free]
And compare UUID with the backup files. Backup files are in binary
format but you can find some informations with the command strings :
[root@pn root]# strings /etc/lvmconf/datavg.conf
datavg
3W pFW PYW 0lW
gnVb174BNhliAYzpfTck3Tia2F6WA5w4
/dev/sdb
datavg
pndracap1119470784
mhVisKIgAkF6m3RDjGTJ1TcH6StmeDPs
/dev/sdc
datavg
pndracap1119471248
Xe03YQ6gTwM7DA0ODRsfXTTi1v527o1W
/dev/sdd
datavg
pndracap1119471272
tL0Ew7OcSB2mbDr0yHMRvY7DSMMDzzRv
/dev/sde
datavg
pndracap1119471281
QNEj7Sr445xZd3WVyPEFU9WEQSFnIx38
/dev/sdf
datavg
pndracap1119471287
xHW
OUL3A2h1EMv8w8Y2UNvii879Qo7hloOj
/dev/sdg
datavg
pndracap1119471296
X[W
4ryusb84Et22mdQwaQJk3wiXVBr5p4gj
/dev/sdas
datavg
pndracap1120640174
8nW
02MxKGwGQTFpaXkj1jaIGiNXPM7t38Bt
/dev/sdat
datavg
pndracap1120640188
BRRj5qtaYQhz5cHull1vlXPeGQlngHG0
/dev/datavg/lv_data
datavg
You can change UUIDs in the backup file like this example :
[root@pn root]# cat /etc/lvmconf/datavg.conf | \
sed -e
"s/mhVisKIgAkF6m3RDjGTJ1TcH6StmeDPs/YJVxbrHC4WXnpqFKBHB0Cio2Ig2P1kaL/g" | \
sed -e
"s/Xe03YQ6gTwM7DA0ODRsfXTTi1v527o1W/t6xBPE3iiuspQbCRdV7wKoQDizuhDOUH/g" | \
sed -e
"s/tL0Ew7OcSB2mbDr0yHMRvY7DSMMDzzRv/WmD7qbnNUihw42CuS7a6aGRfHFHlDLEr/g" | \
sed -e
"s/QNEj7Sr445xZd3WVyPEFU9WEQSFnIx38/pfHJyx4MsvR2T365GYBDRySBcks5HUyP/g" | \
sed -e
"s/OUL3A2h1EMv8w8Y2UNvii879Qo7hloOj/Bi7y8xCxoYcTsU0cvGwd8EOpLDT5ywZL/g" | \
sed -e
"s/4ryusb84Et22mdQwaQJk3wiXVBr5p4gj/jGgc15WsZ6Q34r1cQdxE3bLIg60qdFmR/g" \
> /tmp/datavgbcv.conf
And restore all disk :
[root@pn root]# vgcfgrestore -f /tmp/datavgbcv.conf -n datavgbcv -o
/dev/sdaw /dev/sdbc
[root@pn root]# vgcfgrestore -f /tmp/datavgbcv.conf -n datavgbcv -o
/dev/sdax /dev/sdbd
[root@pn root]# vgcfgrestore -f /tmp/datavgbcv.conf -n datavgbcv -o
/dev/sday /dev/sdbe
[root@pn root]# vgcfgrestore -f /tmp/datavgbcv.conf -n datavgbcv -o
/dev/sdaz /dev/sdbf
[root@pn root]# vgcfgrestore -f /tmp/datavgbcv.conf -n datavgbcv -o
/dev/sdaa /dev/sdbg
[root@pn root]# vgcfgrestore -f /tmp/datavgbcv.conf -n datavgbcv -o
/dev/sdab /dev/sdbh
regards
Nicolas GARIN.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [linux-lvm] solved: lvm lost after reboot !?
2005-07-19 8:28 ` [linux-lvm] lvm lost after reboot !? how to recover UUID? GARIN N Ext ROSI/SIPROD
@ 2005-07-19 11:46 ` Constantin Mercier
0 siblings, 0 replies; 6+ messages in thread
From: Constantin Mercier @ 2005-07-19 11:46 UTC (permalink / raw)
To: LVM general discussion and development
Hi Alan, hi Nicolas
first of all thanks for your time & effort.
I finally 'solved' the problem by upgrading to LVM2, which I did not
dare before since I could not oversee possible consequences
for my filesystem.
The upgrade went flawlessly, all PVs/VGs/LVs returned without
any further action on my side.
And sorry to all of you for the disconcertment I caused the last
two days.
But I still feel that lots of valuable knowledge concerning LVM is
pretty much distributed over the net. I think I'll set up something
like an LVM Wiki shortly.
Anyway,
thanks again!
Regards,
Constantin
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2005-07-19 11:45 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-18 15:32 [linux-lvm] lvm lost after reboot !? how to recover UUID? kitchhiking.org
2005-07-18 15:36 ` Alan Jurgensen
2005-07-18 16:05 ` kitchhiking.org
2005-07-19 0:00 ` [linux-lvm] PVs not found (kernel 2.4<->devfs?) [was: lvm lost after reboot!?] Constantin Mercier
2005-07-19 8:28 ` [linux-lvm] lvm lost after reboot !? how to recover UUID? GARIN N Ext ROSI/SIPROD
2005-07-19 11:46 ` [linux-lvm] solved: lvm lost after reboot !? Constantin Mercier
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.