linux-raid.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Getting the spare disks back to being spare disks
@ 2002-11-23 23:28 Jeremy Huddleston
  2002-11-24  3:45 ` Neil Brown
  0 siblings, 1 reply; 2+ messages in thread
From: Jeremy Huddleston @ 2002-11-23 23:28 UTC (permalink / raw)
  To: linux-raid

I have moved to a RAID 5 setup in my linux box with 4 drives set to 
master on 4 IDE channels, and one spare drive as the slave on one of 
those channels.  In setting things up, I marked one of the 'master' 
drives as 'failed-disk' in my raidtab so that I could copy the data from 
that disk onto the raid then raidhotadd it in once the data had been 
copied over and my system was running entirely on the raid.

So, when I mkraid'd the array, the spare disk was used in liu of the 
failed disk as I would suspect.  I copied over all my data to the raid, 
rebooted, partitioned the formerly 'failed-disk' properly, changed 
'failed-disk' to 'raid-disk' in /etc/raidtab, and 'raidhotadd'd it back 
into the array.  I expected the array to reconstruct on this disk and 
put the spare-disk back as a spare, but that's not the case.  Now, the 
newly added disk seems to be the spare, and the 'slave' disk is still in 
the array (which makes for bad performance).  How can I tell the array 
to replace the slave disk with the disk that I just added?  I figure I 
could just unplug the slave and let it reconstruct, but that doesn't sit 
well with me.


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

* Re: Getting the spare disks back to being spare disks
  2002-11-23 23:28 Getting the spare disks back to being spare disks Jeremy Huddleston
@ 2002-11-24  3:45 ` Neil Brown
  0 siblings, 0 replies; 2+ messages in thread
From: Neil Brown @ 2002-11-24  3:45 UTC (permalink / raw)
  To: Jeremy Huddleston; +Cc: linux-raid

On Saturday November 23, jeremyhu@uclink4.berkeley.edu wrote:
> I have moved to a RAID 5 setup in my linux box with 4 drives set to 
> master on 4 IDE channels, and one spare drive as the slave on one of 
> those channels.  In setting things up, I marked one of the 'master' 
> drives as 'failed-disk' in my raidtab so that I could copy the data from 
> that disk onto the raid then raidhotadd it in once the data had been 
> copied over and my system was running entirely on the raid.
> 
> So, when I mkraid'd the array, the spare disk was used in liu of the 
> failed disk as I would suspect.  I copied over all my data to the raid, 
> rebooted, partitioned the formerly 'failed-disk' properly, changed 
> 'failed-disk' to 'raid-disk' in /etc/raidtab, and 'raidhotadd'd it back 
> into the array.  I expected the array to reconstruct on this disk and 
> put the spare-disk back as a spare, but that's not the case.  Now, the 
> newly added disk seems to be the spare, and the 'slave' disk is still in 
> the array (which makes for bad performance).  How can I tell the array 
> to replace the slave disk with the disk that I just added?  I figure I 
> could just unplug the slave and let it reconstruct, but that doesn't sit 
> well with me.

You have to tell md that the device that you want to be spare has
failed.  Either by pulling it out (hopefully while the computer is
off) which I agree is not very nice, or with
   raidsetfaulty /dev/md0 /dev/hdXX
or
   mdadm /dev/md0 --fail /dev/hdXX

Then it will rebuild onto the spare.  Then you can remove and re-add
the device that you want to be a spare:

   raidhotremove /dev/md0 /dev/hdXX
   raidhotadd /dev/md0 /dev/hdXX
or
   mdadm /dev/md0 --remove /dev/hdXX --add /dev/hdXX

NeilBrown

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

end of thread, other threads:[~2002-11-24  3:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-11-23 23:28 Getting the spare disks back to being spare disks Jeremy Huddleston
2002-11-24  3:45 ` Neil Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).