All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [linux-lvm] Remove VOlume group that doesn't exist
@ 2003-09-02 18:09 Melinda Taylor
  2003-09-03  4:15 ` Heinz J . Mauelshagen
  0 siblings, 1 reply; 4+ messages in thread
From: Melinda Taylor @ 2003-09-02 18:09 UTC (permalink / raw
  To: linux-lvm

Hello,

After my couple of disks died I have been left with one working volume 
group vg02 and
one non-existant volume group vg01 which I would like to remove.
Since /dev/sdd2 and /dev/sde2 no longer exist I am unable to remove the 
volume group with the usual method:

/sbin/vgremove vg01
VG data differs between PVs /dev/sdd2 and /dev/sde2
Volume group "vg01" doesn't exist


Actually /dev/sdd2 does still exist as a normal formatted linux partition
so I don't want to damage that while trying to remove my volume group.

How do I tell lvm that vg01 no longer exists? It is not in lvmtab so I 
am unsure where it store this info.


Many Thanks,

melinda

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [linux-lvm] Remove VOlume group that doesn't exist
  2003-09-02 18:09 [linux-lvm] Remove VOlume group that doesn't exist Melinda Taylor
@ 2003-09-03  4:15 ` Heinz J . Mauelshagen
  2003-09-08  1:26   ` Melinda Taylor
  0 siblings, 1 reply; 4+ messages in thread
From: Heinz J . Mauelshagen @ 2003-09-03  4:15 UTC (permalink / raw
  To: linux-lvm

Melinda,

Does pvscan show /dev/sdd2 as a Physical Volume ?

If so, there's still LVM metadata on /dev/sdd2 in the first sector.
In case the partition is unused (no filesystem etc.), a

	dd if=/dev/zero of=/dev/sdd2 bs=512

should remove the PV.

On Wed, Sep 03, 2003 at 09:07:19AM +1000, Melinda Taylor wrote:
> Hello,
> 
> After my couple of disks died I have been left with one working volume 
> group vg02 and
> one non-existant volume group vg01 which I would like to remove.
> Since /dev/sdd2 and /dev/sde2 no longer exist I am unable to remove the 
> volume group with the usual method:
> 
> /sbin/vgremove vg01
> VG data differs between PVs /dev/sdd2 and /dev/sde2
> Volume group "vg01" doesn't exist
> 
> 
> Actually /dev/sdd2 does still exist as a normal formatted linux partition
> so I don't want to damage that while trying to remove my volume group.
> 
> How do I tell lvm that vg01 no longer exists? It is not in lvmtab so I 
> am unsure where it store this info.
> 
> 
> Many Thanks,
> 
> melinda
> 
> 
> 
> _______________________________________________
> linux-lvm mailing list
> linux-lvm@sistina.com
> http://lists.sistina.com/mailman/listinfo/linux-lvm
> read the LVM HOW-TO at http://tldp.org/HOWTO/LVM-HOWTO/

-- 

Regards,
Heinz    -- The LVM Guy --

*** Software bugs are stupid.
    Nevertheless it needs not so stupid people to solve them ***

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

Heinz Mauelshagen                                 Sistina Software Inc.
Senior Consultant/Developer                       Am Sonnenhang 11
                                                  56242 Marienrachdorf
                                                  Germany
Mauelshagen@Sistina.com                           +49 2626 141200
                                                       FAX 924446
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [linux-lvm] Remove VOlume group that doesn't exist
  2003-09-03  4:15 ` Heinz J . Mauelshagen
@ 2003-09-08  1:26   ` Melinda Taylor
  2003-09-08 18:53     ` Heinz J . Mauelshagen
  0 siblings, 1 reply; 4+ messages in thread
From: Melinda Taylor @ 2003-09-08  1:26 UTC (permalink / raw
  To: linux-lvm

Hi Heinz,

PVSCAN reveals:

[root@astro melinda]# /sbin/pvscan
  VG data differs between PVs /dev/sdd2 and /dev/sde2
  1 PV(s) found for VG vg01: expected 0
  Out of memory.  Requested 4006555252 bytes.
  Couldn't allocate logical volume maps.
  PV /dev/sdd1    is in exported VG vg02 [9.85 GB / 0    free]
  PV /dev/sde1    is in exported VG vg02 [19.54 GB / 0    free]
  Total: 2 [0   ] / in use: 2 [0   ] / in no VG: 0 [0   ]

/dev/sdd2 and /dev/sde2 have both been reformatted as ext3 fs and their 
partition type was changed to linux fs using fdisk.

The memory error I haven't seen before (we have 3GB) but I installed a 
new kernel the other week maybe that is the cause /var/log/messages said:

Sep  8 16:17:15 astro kernel: ide-scsi: hda: unsupported command in 
request queue (0)
Sep  8 16:17:15 astro kernel: end_request: I/O error, dev 03:1e (hda), 
sector 0
Sep  8 16:17:15 astro kernel: ide-scsi: hda: unsupported command in 
request queue (0)
Sep  8 16:17:15 astro kernel: end_request: I/O error, dev 03:1f (hda), 
sector 0
Sep  8 16:17:16 astro kernel: ide-scsi: hda: unsupported command in 
request queue (0)
Sep  8 16:17:16 astro kernel: end_request: I/O error, dev 03:20 (hda), 
sector 0

I don't want to do

dd if=/dev/zero of=/dev/sdd2 bs=512 

as /dev/sdd2 now has data on it.

If I look at both drives in fdisk only the parition /dev/sdd1 and /dev/sde1 which make up VG02 are set to "Linux LVM".

Is there someway to rename VG02 as VG01 maybe? I am at a loss.

Many Thanks,

melinda





Heinz J . Mauelshagen wrote:

>Melinda,
>
>Does pvscan show /dev/sdd2 as a Physical Volume ?
>
>If so, there's still LVM metadata on /dev/sdd2 in the first sector.
>In case the partition is unused (no filesystem etc.), a
>
>	dd if=/dev/zero of=/dev/sdd2 bs=512
>
>should remove the PV.
>
>On Wed, Sep 03, 2003 at 09:07:19AM +1000, Melinda Taylor wrote:
>  
>
>>Hello,
>>
>>After my couple of disks died I have been left with one working volume 
>>group vg02 and
>>one non-existant volume group vg01 which I would like to remove.
>>Since /dev/sdd2 and /dev/sde2 no longer exist I am unable to remove the 
>>volume group with the usual method:
>>
>>/sbin/vgremove vg01
>>VG data differs between PVs /dev/sdd2 and /dev/sde2
>>Volume group "vg01" doesn't exist
>>
>>
>>Actually /dev/sdd2 does still exist as a normal formatted linux partition
>>so I don't want to damage that while trying to remove my volume group.
>>
>>How do I tell lvm that vg01 no longer exists? It is not in lvmtab so I 
>>am unsure where it store this info.
>>
>>
>>Many Thanks,
>>
>>melinda
>>
>>
>>
>>_______________________________________________
>>linux-lvm mailing list
>>linux-lvm@sistina.com
>>http://lists.sistina.com/mailman/listinfo/linux-lvm
>>read the LVM HOW-TO at http://tldp.org/HOWTO/LVM-HOWTO/
>>    
>>
>
>  
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [linux-lvm] Remove VOlume group that doesn't exist
  2003-09-08  1:26   ` Melinda Taylor
@ 2003-09-08 18:53     ` Heinz J . Mauelshagen
  0 siblings, 0 replies; 4+ messages in thread
From: Heinz J . Mauelshagen @ 2003-09-08 18:53 UTC (permalink / raw
  To: linux-lvm; +Cc: mge

On Mon, Sep 08, 2003 at 04:24:21PM +1000, Melinda Taylor wrote:
> Hi Heinz,

Hi Melinda.

> 
> PVSCAN reveals:
> 
> [root@astro melinda]# /sbin/pvscan
>   VG data differs between PVs /dev/sdd2 and /dev/sde2
>   1 PV(s) found for VG vg01: expected 0
>   Out of memory.  Requested 4006555252 bytes.
>   Couldn't allocate logical volume maps.
>   PV /dev/sdd1    is in exported VG vg02 [9.85 GB / 0    free]
>   PV /dev/sde1    is in exported VG vg02 [19.54 GB / 0    free]
>   Total: 2 [0   ] / in use: 2 [0   ] / in no VG: 0 [0   ]
> 
> /dev/sdd2 and /dev/sde2 have both been reformatted as ext3 fs and their 
> partition type was changed to linux fs using fdisk.

And those aren't listed above wich is good.

> 
> The memory error I haven't seen before (we have 3GB) but I installed a 
> new kernel the other week maybe that is the cause /var/log/messages said:

This is no memory error at all. Just some application sending an unsupported
command through the ide-scsi driver (cd writer sw ?). Can be ignored safely.

> 
> Sep  8 16:17:15 astro kernel: ide-scsi: hda: unsupported command in 
> request queue (0)
> Sep  8 16:17:15 astro kernel: end_request: I/O error, dev 03:1e (hda), 
> sector 0
> Sep  8 16:17:15 astro kernel: ide-scsi: hda: unsupported command in 
> request queue (0)
> Sep  8 16:17:15 astro kernel: end_request: I/O error, dev 03:1f (hda), 
> sector 0
> Sep  8 16:17:16 astro kernel: ide-scsi: hda: unsupported command in 
> request queue (0)
> Sep  8 16:17:16 astro kernel: end_request: I/O error, dev 03:20 (hda), 
> sector 0
> 
> I don't want to do
> 
> dd if=/dev/zero of=/dev/sdd2 bs=512 

You shoudn't because it would overwrite filesystem metadata.

> 
> as /dev/sdd2 now has data on it.
> 
> If I look at both drives in fdisk only the parition /dev/sdd1 and /dev/sde1 which make up VG02 are set to "Linux LVM".

LVM still finds PV metadata for vg01 which is strange.

Could you send the 1st 4MB of you partitions sdd2 and sde2 to me in email
for further analysis ?

If so please run:

# dd if=/dev/sdd2 of=sdd2.vgda bs=1k count=4k
# dd if=/dev/sde2 of=sde2.vgda bs=1k count=4k
# tar cf Melinda.vgda.tar sd[de]2.vgda
# bzip2 Melinda.vgda.tar

and send the resulting Melinda.vgda.tar.bz2 file to me.

Regards,
Heinz    -- The LVM Guy --



> 
> Is there someway to rename VG02 as VG01 maybe? I am at a loss.
> 
> Many Thanks,
> 
> melinda
> 
> 
> 
> 
> 
> Heinz J . Mauelshagen wrote:
> 
> >Melinda,
> >
> >Does pvscan show /dev/sdd2 as a Physical Volume ?
> >
> >If so, there's still LVM metadata on /dev/sdd2 in the first sector.
> >In case the partition is unused (no filesystem etc.), a
> >
> >	dd if=/dev/zero of=/dev/sdd2 bs=512
> >
> >should remove the PV.
> >
> >On Wed, Sep 03, 2003 at 09:07:19AM +1000, Melinda Taylor wrote:
> >  
> >
> >>Hello,
> >>
> >>After my couple of disks died I have been left with one working volume 
> >>group vg02 and
> >>one non-existant volume group vg01 which I would like to remove.
> >>Since /dev/sdd2 and /dev/sde2 no longer exist I am unable to remove the 
> >>volume group with the usual method:
> >>
> >>/sbin/vgremove vg01
> >>VG data differs between PVs /dev/sdd2 and /dev/sde2
> >>Volume group "vg01" doesn't exist
> >>
> >>
> >>Actually /dev/sdd2 does still exist as a normal formatted linux partition
> >>so I don't want to damage that while trying to remove my volume group.
> >>
> >>How do I tell lvm that vg01 no longer exists? It is not in lvmtab so I 
> >>am unsure where it store this info.
> >>
> >>
> >>Many Thanks,
> >>
> >>melinda
> >>
> >>
> >>
> >>_______________________________________________
> >>linux-lvm mailing list
> >>linux-lvm@sistina.com
> >>http://lists.sistina.com/mailman/listinfo/linux-lvm
> >>read the LVM HOW-TO at http://tldp.org/HOWTO/LVM-HOWTO/
> >>    
> >>
> >
> >  
> >
> 
> 
> _______________________________________________
> linux-lvm mailing list
> linux-lvm@sistina.com
> http://lists.sistina.com/mailman/listinfo/linux-lvm
> read the LVM HOW-TO at http://tldp.org/HOWTO/LVM-HOWTO/

*** Software bugs are stupid.
    Nevertheless it needs not so stupid people to solve them ***

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

Heinz Mauelshagen                                 Sistina Software Inc.
Senior Consultant/Developer                       Am Sonnenhang 11
                                                  56242 Marienrachdorf
                                                  Germany
Mauelshagen@Sistina.com                           +49 2626 141200
                                                       FAX 924446
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2003-09-08 18:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-09-02 18:09 [linux-lvm] Remove VOlume group that doesn't exist Melinda Taylor
2003-09-03  4:15 ` Heinz J . Mauelshagen
2003-09-08  1:26   ` Melinda Taylor
2003-09-08 18:53     ` Heinz J . Mauelshagen

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.