AnimeSuki Forums

Register Forum Rules FAQ Community Today's Posts Search

Go Back   AnimeSuki Forum > Support > Tech Support

Notices

Reply
 
Thread Tools
Old 2012-11-05, 01:56   Link #1
Wandering_Youth
lost in wonder forever...
 
 
Join Date: Mar 2003
Location: edge of my dream in the land of twilight...ZzzZzZ
Disk Failure - RAID 5....uh oh!

Well one of my hard drive in my RAID 5 array has failed making my system slow, unresponsive, problematic etc. I removed the failed HD and hooked it up to another computer to run some test to see if it is truly dead.

Quick question, how do I make the RAID 5 rebuild itself. I understand that I need to plug in a new HD, but where do I go to intialize the rebuild or does it do that automatically?

RAID 5 Array (Software RAID - Intel Z77 Chipset - Gigabyte Motherboard):
2x 1TB Hitachi HD
2x 1TB Seagate HD (1 Failed)

Surprisingly, when I removed the failed HD, my RAID 5 array works just fine and all my files appears to be intact and usable. I didn't expect that! I thought RAID 5 spreads all the necessary data to all the hard drives in the array so it could be rebuilt if one was to fail. I didn't know the array still works when it's missing a hard drive.
__________________
Wandering_Youth is offline   Reply With Quote
Old 2012-11-05, 05:08   Link #2
SeijiSensei
AS Oji-kun
 
 
Join Date: Nov 2006
Age: 74
RAID 5 spreads the data across N-1 of the disks and writes a "parity" record on the last one (=1 if the sum of the equivalent bits on the other drives is odd, otherwise zero). The array can survive the loss of one drive, but typically not more than that.

Usually hardware RAID systems handle rebuilding the array themselves. I'm not sure I understand why you think your system has "software" RAID. In Linux, for instance, software RAID means that it's handled by the operating system and no hardware is involved. Some systems use what's called "fake" RAID which is a strange mix of some hardware support and a proprietary OS driver to make it work. That's fine if you run Windows where the driver might exist, but useless if you run any other OS.

Have you tried simply inserting a new disk into the array and watch to see if it gets rebuilt? You need to do this soon in case another drive fails. Then you'll never be able to retrieve the data again.

Remember, too, that RAID is not a substitute for backups. I learned that to my dismay some years back.
SeijiSensei is offline   Reply With Quote
Old 2012-11-05, 07:43   Link #3
spikexp
Senior Member
 
 
Join Date: Oct 2008
Location: Quebec
Age: 32
Replace it fast before another drive break.
With raid 5, you can only loose one hard drive safely, more than that and you loose everything.

The reason you can still use it, is that the missing hard drive is "emulated" with the data from the other drive.

For the rest, like SeijiSensei said.
spikexp is offline   Reply With Quote
Old 2012-11-05, 10:09   Link #4
Wandering_Youth
lost in wonder forever...
 
 
Join Date: Mar 2003
Location: edge of my dream in the land of twilight...ZzzZzZ
Quote:
Originally Posted by SeijiSensei View Post
RAID 5 spreads the data across N-1 of the disks and writes a "parity" record on the last one (=1 if the sum of the equivalent bits on the other drives is odd, otherwise zero). The array can survive the loss of one drive, but typically not more than that.

Usually hardware RAID systems handle rebuilding the array themselves. I'm not sure I understand why you think your system has "software" RAID. In Linux, for instance, software RAID means that it's handled by the operating system and no hardware is involved. Some systems use what's called "fake" RAID which is a strange mix of some hardware support and a proprietary OS driver to make it work. That's fine if you run Windows where the driver might exist, but useless if you run any other OS.

Have you tried simply inserting a new disk into the array and watch to see if it gets rebuilt? You need to do this soon in case another drive fails. Then you'll never be able to retrieve the data again.

Remember, too, that RAID is not a substitute for backups. I learned that to my dismay some years back.
I thought software and fake RAID meant the samething. Thanks for clearing that up. Do I need to use the exact same hard drive size and brand for it to work?
__________________
Wandering_Youth is offline   Reply With Quote
Old 2012-11-05, 11:17   Link #5
SeijiSensei
AS Oji-kun
 
 
Join Date: Nov 2006
Age: 74
Brand, no, as you have already seen. But size, yes, the new drive needs to be at least as large as the existing ones. It might be possible to add a 2 TB drive that you have partitioned into two 1 TB halves, assign one of them to the array, and format the rest as a normal drive. That would depend on the capabilities of the RAID system you're using. The easiest solution is to buy another 1 TB drive.
SeijiSensei is offline   Reply With Quote
Old 2012-11-05, 16:40   Link #6
Wandering_Youth
lost in wonder forever...
 
 
Join Date: Mar 2003
Location: edge of my dream in the land of twilight...ZzzZzZ
Any opinions on what software is usually the best for backups? I'm looking for something that is fast, I hate backing up my files because it usually takes hours and I am usually using my computer for other things during the backup process or I leave my computer on all day while I'm at work, but that's a waste of electricity.

Specifically is there a backup software that can selectively only backup changes in a source drive and not have to backup the entire drive every single time. Kind of like synchronizing a source drive to a backup drive.
__________________
Wandering_Youth is offline   Reply With Quote
Old 2012-11-05, 20:43   Link #7
spikexp
Senior Member
 
 
Join Date: Oct 2008
Location: Quebec
Age: 32
I use FreeFileSync for my backup on external hard drive, there is probably better, but it get the job done.
spikexp is offline   Reply With Quote
Old 2012-11-05, 22:52   Link #8
SeijiSensei
AS Oji-kun
 
 
Join Date: Nov 2006
Age: 74
I'd take a look at this: http://www.aboutmyip.com/AboutMyXApp/DeltaCopy.jsp

It uses rsync, which has become the standard command-line backup utility in the *nix world. It's very cleverly designed to minimize the amount of copying involved. The author is a very smart Australian fellow named Andrew Tridgell who was also responsible for creating "Samba" which emulates a Windows file server on Unix platforms.

I have rsync scripts that run nightly to make backups over the Internet. I back up my public servers to a machine in my house along with my local file server where I keep all my work and email.
SeijiSensei is offline   Reply With Quote
Old 2012-11-06, 02:38   Link #9
0utf0xZer0
Pretentious moe scholar
 
 
Join Date: Oct 2006
Location: Vancouver, Canada
Age: 37
I've found Microsoft Synctoy gets the job due with minimal fuss, though I haven't played with the scheduling capabilities - those apparently require using Window's task scheduler.
__________________

Signature courtesy of Ganbaru.
0utf0xZer0 is offline   Reply With Quote
Old 2012-11-08, 12:53   Link #10
Wandering_Youth
lost in wonder forever...
 
 
Join Date: Mar 2003
Location: edge of my dream in the land of twilight...ZzzZzZ
Thanks for the opinions, I'm trying out Robocopy and so far I like it. I finished checking the hard drive that supposedly died, but it seems to work fine. I plugged it back into the array and it rebuilt itself in 3 hours. However, I'm wondering if said hard drive is near the breaking point and I should go buy a new hard drive.
__________________
Wandering_Youth is offline   Reply With Quote
Old 2012-11-08, 15:10   Link #11
SeijiSensei
AS Oji-kun
 
 
Join Date: Nov 2006
Age: 74
Quote:
Originally Posted by Wandering_Youth View Post
I'm wondering if said hard drive is near the breaking point and I should go buy a new hard drive.
Use smartmontools. It's free and cross-platform. Here are the installation instructions for Windows. (Linux users can just install the "smartmontools" package from their standard repositories. Here's the documentation for Ubuntu.)
SeijiSensei is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 15:50.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
We use Silk.