Go Back   { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > Windows Server

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 07-21-2008, 05:07 PM
rosgiof@hotmail.it
 
Posts: n/a
Raid 1 and 5 Chkdsk

Hi all.

I've googled a lot, but I've found out various and different opinions:

Is it correct to use chkdsk /F and chkdsk /F /R on a RAID 1 system and
on a RAID 5 (with 3 HDs) system ?
All my systems are hardware RAIDs and the servers are domain
controller with w2k srv and w2k3 srv.

Thanks a lot.
Bye, Rosgiof.
Reply With Quote
  #2 (permalink)  
Old 07-22-2008, 04:17 PM
Brian Cryer
 
Posts: n/a
Re: Raid 1 and 5 Chkdsk

<rosgiof@hotmail.it> wrote in message
news:c25a8ff9-7d7c-4e2c-bbcd-743afbddfe19@z72g2000hsb.googlegroups.com...
> Hi all.
>
> I've googled a lot, but I've found out various and different opinions:
>
> Is it correct to use chkdsk /F and chkdsk /F /R on a RAID 1 system and
> on a RAID 5 (with 3 HDs) system ?
> All my systems are hardware RAIDs and the servers are domain
> controller with w2k srv and w2k3 srv.


I would have thought so, yes - because a RAID controller should present the
RAID as a single disk to windows and windows shouldn't even need to be aware
that its a RAID.

chkdsk /f checks for logical corruptions, which could still occur whatever
type of RAID you have if you ever shutdown in an ungraceful manner.

chkdsk /r checks for bad sectors. This is probably pointless because even if
one of the physical disks had a bad sector the raid controller (whether raid
1 or raid 5) should return the correct contents.

So I would have thought chkdsk /f but not /r.

Presumably if the RAID is failing (controller error or multiple disk errors)
then chkdsk might report an error but chkdsk will not be able to fix the
problem because the problem is with the underlying RAID. In this scenario
chkdsk might even make things worse! So if you ever need to run chkdsk also
check the state of the RAID controller.
--
Brian Cryer
www.cryer.co.uk/brian



Reply With Quote
  #3 (permalink)  
Old 07-23-2008, 04:56 PM
Bryan Hughes
 
Posts: n/a
Re: Raid 1 and 5 Chkdsk

Read this http://www.dataclinic.co.uk/raid-server-faults.htm

You should never run chkdsk in /F or /F/R mode on a RAID array. Chkdsk is
not RAID aware, and will simply try to analyse and fix the NTFS tree as if
dealing with a normal disk. In doing so, it can write over information in a
degraded RAID array, that might have been recoverable at a lower level. You
can run it in read mode, but I would use the RAID controllers software. You
should be able access during machine boot up process. This should have
several options on checking for disk failure and recovery.

Chkdsk might be able to fix file system errors but it cannot do a surface
scan since it does not have access to any of the physical surfaces. I have
lost an array doing chkdsk on a raid array. That is why proper power
backup, data backup and recovery procedures are such a critical part of any
server setup.


Bryan


"Brian Cryer" <not.here@localhost> wrote in message
news:u7kpnZB7IHA.4468@TK2MSFTNGP02.phx.gbl...
> <rosgiof@hotmail.it> wrote in message
> news:c25a8ff9-7d7c-4e2c-bbcd-743afbddfe19@z72g2000hsb.googlegroups.com...
>> Hi all.
>>
>> I've googled a lot, but I've found out various and different opinions:
>>
>> Is it correct to use chkdsk /F and chkdsk /F /R on a RAID 1 system and
>> on a RAID 5 (with 3 HDs) system ?
>> All my systems are hardware RAIDs and the servers are domain
>> controller with w2k srv and w2k3 srv.

>
> I would have thought so, yes - because a RAID controller should present
> the RAID as a single disk to windows and windows shouldn't even need to be
> aware that its a RAID.
>
> chkdsk /f checks for logical corruptions, which could still occur whatever
> type of RAID you have if you ever shutdown in an ungraceful manner.
>
> chkdsk /r checks for bad sectors. This is probably pointless because even
> if one of the physical disks had a bad sector the raid controller (whether
> raid 1 or raid 5) should return the correct contents.
>
> So I would have thought chkdsk /f but not /r.
>
> Presumably if the RAID is failing (controller error or multiple disk
> errors) then chkdsk might report an error but chkdsk will not be able to
> fix the problem because the problem is with the underlying RAID. In this
> scenario chkdsk might even make things worse! So if you ever need to run
> chkdsk also check the state of the RAID controller.
> --
> Brian Cryer
> www.cryer.co.uk/brian
>
>
>



Reply With Quote
  #4 (permalink)  
Old 07-25-2008, 01:44 PM
rosgiof@hotmail.it
 
Posts: n/a
Re: Raid 1 and 5 Chkdsk

Hi and thanks to all for your very kind help.
Sorry for the delay of my answer but I was ill and didn't reach my
PC. :-)

So, if I don't use chkdsk on a RAID array, what tools could I run to
test the disks?
Only the RAID controllers utility that I access during boot?
Are there any software that run under windows that could test the RAID
disks?

Thanks againg for the help.
Bye, Rosgiof.
Reply With Quote
  #5 (permalink)  
Old 07-25-2008, 02:12 PM
Brian Cryer
 
Posts: n/a
Re: Raid 1 and 5 Chkdsk


"Bryan Hughes" <bhughes@notreal.org> wrote in message
news:%23$4IVUO7IHA.1420@TK2MSFTNGP06.phx.gbl...
> Read this http://www.dataclinic.co.uk/raid-server-faults.htm
>
> You should never run chkdsk in /F or /F/R mode on a RAID array. Chkdsk is
> not RAID aware, and will simply try to analyse and fix the NTFS tree as if
> dealing with a normal disk. In doing so, it can write over information in
> a degraded RAID array, that might have been recoverable at a lower level.
> You can run it in read mode, but I would use the RAID controllers
> software. You should be able access during machine boot up process. This
> should have several options on checking for disk failure and recovery.


The key phrase there is "in a degraded RAID array". To which I quite agree.
If there are problems with the RAID array then chkdsk won't fix them and it
will probably only make things worse. However, where the RAID array is
operating without problems then chkdsk can find and fix logical (i.e. file
system) problems with out problem. I thought I'd made this clear in my post,
but looking back I should have been clearer.

> Chkdsk might be able to fix file system errors but it cannot do a surface
> scan since it does not have access to any of the physical surfaces. I
> have lost an array doing chkdsk on a raid array. That is why proper power
> backup, data backup and recovery procedures are such a critical part of
> any server setup.


I accept that should have been clearer with terms in my original reply. When
I referred to local problems I meant problems with the file system. Chkdsk
is fine for these.

Bottom line is that if you are using a RAID you ought to have something that
warns you when there is a problem with the RAID. This is especially
important since a RAID should allow you to continue working with a failed
disk.
--
Brian Cryer
www.cryer.co.uk/brian

> Bryan
>
>
> "Brian Cryer" <not.here@localhost> wrote in message
> news:u7kpnZB7IHA.4468@TK2MSFTNGP02.phx.gbl...
>> <rosgiof@hotmail.it> wrote in message
>> news:c25a8ff9-7d7c-4e2c-bbcd-743afbddfe19@z72g2000hsb.googlegroups.com...
>>> Hi all.
>>>
>>> I've googled a lot, but I've found out various and different opinions:
>>>
>>> Is it correct to use chkdsk /F and chkdsk /F /R on a RAID 1 system and
>>> on a RAID 5 (with 3 HDs) system ?
>>> All my systems are hardware RAIDs and the servers are domain
>>> controller with w2k srv and w2k3 srv.

>>
>> I would have thought so, yes - because a RAID controller should present
>> the RAID as a single disk to windows and windows shouldn't even need to
>> be aware that its a RAID.
>>
>> chkdsk /f checks for logical corruptions, which could still occur
>> whatever type of RAID you have if you ever shutdown in an ungraceful
>> manner.
>>
>> chkdsk /r checks for bad sectors. This is probably pointless because even
>> if one of the physical disks had a bad sector the raid controller
>> (whether raid 1 or raid 5) should return the correct contents.
>>
>> So I would have thought chkdsk /f but not /r.
>>
>> Presumably if the RAID is failing (controller error or multiple disk
>> errors) then chkdsk might report an error but chkdsk will not be able to
>> fix the problem because the problem is with the underlying RAID. In this
>> scenario chkdsk might even make things worse! So if you ever need to run
>> chkdsk also check the state of the RAID controller.
>> --
>> Brian Cryer
>> www.cryer.co.uk/brian


Reply With Quote
  #6 (permalink)  
Old 08-01-2008, 10:00 AM
rosgiof@hotmail.it
 
Posts: n/a
Re: Raid 1 and 5 Chkdsk

Ok, Brian, thanks very much for your help.

Have you some suggestions to use a tool with RAID system?

Thanks and bye bye.
Rosgiof.
Reply With Quote
Reply

  { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > Windows Server


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 02:42 PM.


Powered by vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
© 1999-2008 mindfrost82.com v11.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109