스페어를 활성화하지 않는 간단한 mdadm RAID 1 Array Size : 1953511288

Ubuntu 12.04 LTS Precise Pangolin에서 사용 하는 RAID 1 어레이 에 2 개의 2TB HDD 파티션 ( /dev/sdb1/dev/sdc1)을 만들었습니다 ./dev/md0mdadm

이 명령 sudo mdadm --detail /dev/md0은 두 드라이브를 모두 활성 동기화 로 표시하는 데 사용됩니다 .

그런 다음 테스트를 위해 실패 /dev/sdb1하고 제거 한 다음 명령으로 다시 추가했습니다.sudo mdadm /dev/md0 --add /dev/sdb1

watch cat /proc/mdstat 어레이 재 구축의 진행률 표시 줄을 보여 주었지만 몇 시간을 보지 않고 소프트웨어가 무엇을하고 있는지 알고 있다고 가정했습니다.

진행률 표시 줄이 더 이상 표시되지 않으면 다음이 표시 cat /proc/mdstat됩니다.

md0 : active raid1 sdb1[2](S) sdc1[1]
      1953511288 blocks super 1.2 [2/1] [U_]

그리고 sudo mdadm --detail /dev/md0보여줍니다 :

/dev/md0:
        Version : 1.2
  Creation Time : Sun May 27 11:26:05 2012
     Raid Level : raid1
     Array Size : 1953511288 (1863.01 GiB 2000.40 GB)
  Used Dev Size : 1953511288 (1863.01 GiB 2000.40 GB)
   Raid Devices : 2
  Total Devices : 2
    Persistence : Superblock is persistent

    Update Time : Mon May 28 11:16:49 2012
          State : clean, degraded
 Active Devices : 1
Working Devices : 2
 Failed Devices : 0
  Spare Devices : 1

           Name : Deltique:0  (local to host Deltique)
           UUID : 49733c26:dd5f67b5:13741fb7:c568bd04
         Events : 32365

    Number   Major   Minor   RaidDevice State
       1       8       33        0      active sync   /dev/sdc1
       1       0        0        1      removed

       2       8       17        -      spare   /dev/sdb1

mdadm은 제거 된 드라이브를 스페어로 자동 교체하지만 /dev/sdb1예상 위치 인 RaidDevice로 이동되지 않는다고 들었습니다 1.


업데이트 (2012 년 5 월 30 일) : 전체에 대한 badblocks파괴적인 읽기 / 쓰기 테스트에서 /dev/sdb예상대로 오류가 발생하지 않았습니다. 두 HDD 모두 새것입니다.

최신 편집 시점 에서이 명령으로 배열을 어셈블했습니다.

sudo mdadm --assemble --force --no-degraded /dev/md0 /dev/sdb1 /dev/sdc1

결과는 다음과 같습니다.

mdadm: /dev/md0 has been started with 1 drive (out of 2) and 1 rebuilding.

재 구축이 정상적으로 진행되는 것처럼 보입니다.

md0 : active raid1 sdc1[1] sdb1[2]
      1953511288 blocks super 1.2 [2/1] [U_]
      [>....................]  recovery =  0.6% (13261504/1953511288) finish=2299.7min speed=14060K/sec

unused devices: <none>

나는 지금이 재건을 기다리고 있지만, 나는 /dev/sdb1이전에 재건을 시도한 5-6 번과 같은 여분이 될 것으로 기대 합니다.


업데이트 (2012 년 5 월 31 일) : 예, 여전히 여분입니다. 어!


업데이트 (2012 년 6 월 1 일) : Adrian Kelly 의 제안 된 명령을 시도하고 있습니다 .

sudo mdadm --assemble --update=resync /dev/md0 /dev/sdb1 /dev/sdc1

지금 재건을 기다리는 중 …


업데이트 (2012 년 6 월 2 일) : 아니요, 여전히 여분입니다 …


업데이트 (2012 년 6 월 4 일) : PB 는 내가 간과 한 문제를 제기했습니다. 아마도 /dev/sdc1I / O 오류가 발생했습니다 . 나는 /dev/sdc1그것이 잘 작동하는 것처럼 보였고 새로운 것이기 때문에 확인을 귀찮게하지 않았지만 드라이브의 끝 부분에 대한 입출력 오류는 합리적인 가능성입니다.

나는이 HDD를 판매하여 샀기 때문에 그들 중 하나가 이미 고장났다는 것은 놀라운 일이 아닙니다. 또한 둘 다 SMART를 지원 하지 않으므로 너무 저렴하다는 것은 놀라운 일이 아닙니다 …

방금 만든 데이터 복구 절차는 다음과 같습니다.

  1. sudo mdadm /dev/md0 --fail /dev/sdb1내가 꺼내 수 있도록 /dev/sdb1.
  2. sudo mdadm /dev/md0 --remove /dev/sdb1/dev/sdb1배열에서 제거 합니다.
  3. /dev/sdc1 에 장착 /media/DtkBk
  4. /dev/sdb1ext4로 형식화하십시오 .
  5. 에 마운트 /dev/sdb1하십시오 /media/DtkBkTemp.
  6. cd /media 그 지역에서 일하기 위해.
  7. sudo chown deltik DtkBkTempdeltik파티션에 대한 (username ) 권한을 부여합니다.
  8. 모든 파일과 디렉토리를 복사하십시오 : sudo rsync -avzHXShP DtkBk/* DtkBkTemp

UPDATE (2012 06 년 6 월) : 나는 한 badblocks파괴 쓰기 모드 테스트 /dev/sdc다음 절차 다음 :

  1. sudo umount /media/DtkBk 어레이를 분해 할 수 있습니다.
  2. sudo mdadm --stop /dev/md0 배열을 중지합니다.
  3. sudo badblocks -w -p 1 /dev/sdc -s -v의심스러운 하드 드라이브를 지우고 프로세스에서 I / O 오류를 확인하십시오. I / O 오류가있는 경우 이는 좋은 신호가 아닙니다. 잘만되면 나는 환불을받을 수있다.

HDD에 입 / 출력 문제가 없음을 확인했습니다 .

이 모든 조사에서 내 두 가지 원래 질문은 여전히 ​​유효합니다.


내 질문은 :

  1. 예비 드라이브가 활성 동기화되지 않는 이유는 무엇입니까?
  2. 예비 드라이브를 활성화하려면 어떻게해야합니까?


답변

이렇게하면 실제로 아무 것도 수행하지 않고 드라이브를 어레이에 척킹합니다. 즉, 어레이의 구성원이지만 활성 상태가 아닙니다. 기본적으로 이것은 여분으로 바뀝니다.

sudo mdadm /dev/md0 --add /dev/sdb1

스페어가있는 경우 어레이의 활성 드라이브 수를 강제로 증가시켜 스페어를 늘릴 수 있습니다. 3 개의 드라이브와 2 개의 드라이브 활성화 될 것으로 예상 되면 활성 카운트를 3으로 늘려야합니다.

mdadm --grow /dev/md0 --raid-devices=3

RAID 어레이 드라이버는 사용자가 드라이브를 “짧게”발견 한 다음 여분을 찾습니다. 스페어를 찾으면 스페어를 활성 드라이브로 어레이에 통합합니다. 예비 터미널을 열고이 조잡한 명령 행을 실행하여 재 동기화 진행 상태를 확인하십시오. 한 줄로 입력하거나 줄 바꿈 (\) 문자를 사용하고 다시 빌드가 완료되면 터미널에 Ctrl-C를 입력하십시오.

while true; do sleep 60; clear; sudo mdadm --detail /dev/md0; echo; cat /proc/mdstat; done

어레이에 동기화 된 두 개의 활성 드라이브가 있지만 3 개의 드라이브가 없기 때문에 100 % 깨끗하지 않습니다. 고장난 드라이브를 제거한 다음 어레이의 크기를 조정하십시오. 참고 것으로 --grow플래그는 잘못된 이름의 비트 – 그것은 의미 할 수 중 하나를 확장 또는 축소 :

sudo mdadm /dev/md0 --fail /dev/{failed drive}
sudo mdadm /dev/md0 --remove /dev/{failed drive}
sudo mdadm --grow /dev/md0 --raid-devices=2

오류와 관련하여 일반적으로 커널이 다른 “양호한”기능을 사용하도록 전환하므로 드라이브의 링크 문제 (예 : PATA / SATA 포트, 케이블 또는 드라이브 커넥터)는 핫 스페어 장애 조치를 트리거하기에 충분하지 않습니다. “불량”드라이브에 대한 링크를 재설정하는 동안 드라이브. 3 드라이브 어레이, 2 핫, 1 예비 드라이브를 실행하고 최근에 드라이브 중 하나가 최근 로그에서 약간을 차지하기로 결정했기 때문에 이것을 알고 있습니다. 어레이의 모든 드라이브를 테스트 할 때 3 개 모두 “긴”버전의 SMART 테스트를 통과 했으므로 플래터, 기계 구성 요소 또는 온보드 컨트롤러에 문제가되지 않습니다. 잘못된 SATA 포트. 아마도 이것은 당신이보고있는 것입니다. 드라이브를 다른 마더 보드 포트로 전환하거나 다른 케이블을 사용하여 성능이 향상되는지 확인하십시오.


후속 조치 : 미러 확장을 3 개의 드라이브로 확장하고 md 어레이에서 비정상적인 드라이브를 제거하고 새 케이블 (마더 보드가 지원함)에 대한 케이블을 핫 스왑하고 드라이브를 다시 추가했습니다. 다시 추가하자마자 드라이브의 재 동기화가 즉시 시작되었습니다. 지금까지 드라이브를 많이 사용했지만 로그에 단일 오류가 나타나지 않았습니다 . 따라서 드라이브 케이블이 벗겨 질 수 있습니다.


답변

나는 똑같은 문제를 겪었고 내 경우에는 활성 RAID 디스크가 동기화 중에 읽기 오류로 고통 받고 있음을 알았습니다. 따라서 새 디스크가 성공적으로 새로 동기화되었으므로 스페어로 표시되었습니다.

/ var / log / messages 및 기타 시스템 로그에서 오류가 있는지 확인할 수 있습니다. 또한 디스크의 SMART 상태를 확인하는 것이 좋습니다.
1) 간단한 테스트를 실행하십시오.

“smartctl -t short / dev / sda”

2) 테스트 결과를 표시하십시오.

“smartctl -l selftest / dev / sda”

내 경우에는 다음과 같이 반환됩니다.

=== 스마트 데이터 읽기 시작 ===
스마트 자체 테스트 로그 구조 개정 번호 1
Num Test_Description 상태 남은 수명 시간 (시간) LBA_of_first_error
1 오프라인 확장 완료 : 읽기 실패 90 % 7564 27134728
2 짧은 오프라인 완료 : 읽기 실패 90 % 7467 1408449701

라이브 배포판을 부팅하고 결함이있는 디스크의 데이터를 새로운 (현재 “예비”) 디스크로 수동으로 복사해야했습니다.


답변

나는 정확히 같은 문제가 있었고 항상 배열에 다시 추가하려는 두 번째 디스크에 오류가 있다고 생각했습니다. 그러나 내 원본 디스크에는 읽기 오류가있었습니다.

확인 smartctl -t short /dev/sdX하고 몇 분 후에 (으)로 결과를 볼 수 있습니다 smartctl -l selftest /dev/sdX. 나를 위해 그것은 다음과 같이 보였다 :

=== START OF READ SMART DATA SECTION ===
SMART Self-test log structure revision number 1
Num  Test_Description    Status                  Remaining  LifeTime(hours)  LBA_of_first_error
# 1  Short offline       Completed: read failure       20%     25151         734566647

나는이 매뉴얼로 그것들을 고치려고 노력했다 . 그것은 재미 있었다 :-). 두 디스크에 오류가 있는지 확인했지만 문제는 여전히 md 배열에있는 디스크에 읽기 오류가 있으므로 두 번째 디스크 추가가 실패한다는 것입니다.

최신 정보

smartctl -a /dev/sdX
Current_Pending_Sector> 0이 표시되면 추가로 실행해야합니다.

197 Current_Pending_Sector 0x0012 098 000 000 Old_age 항상-69

저에게는 테스트를 위해 디스크를 RAID에서 제거하고 읽기 실패로 인해 재 동기화를 할 수 없었습니다. 동기화가 절반 정도 중단되었습니다. 여전히 RAID 어레이 smartctl에 있던 디스크를 확인했을 때 문제가보고되었습니다.

위의 매뉴얼로 문제를 해결할 수 있었고 보류중인 섹터의 수가 감소했습니다. 그러나 많은 사람들이 있었고 길고 지루한 절차이므로 백업을 사용하고 다른 서버에서 데이터를 복원했습니다.

SMART를 사용할 기회가 없었기 때문에 귀하의 자체 테스트에서 깨진 섹터가 나타나지 않았다고 생각합니다.

나에게 교훈은 배운 것입니다. 어레이에서 디스크를 제거하기 전에 디스크를 확인하십시오.


답변

비슷한 문제가 발생하여 RAID 어레이 양의 디스크를 1에서 2로 늘려서 수정했습니다.

mdadm --grow --raid-devices=2 /dev/md1


답변

업데이트 (2015 년 5 월 24 일) : 3 년 후, RAID 1 어레이의 성능 저하 원인을 조사했습니다.

tl; dr : 드라이브 중 하나가 잘못되었으며, 양호한 드라이브에서 전체 표면 테스트 만 실행했기 때문에이를 알지 못했습니다.

3 년 전, I / O 문제에 대한 로그는 확인하지 않았습니다. check을 생각했다면 배열을 재구성 /var/log/syslog할 때 mdadm포기 했을 때 이와 같은 것을 보았을 것입니다 .

May 24 14:08:32 node51 kernel: [51887.853786] sd 8:0:0:0: [sdi] Unhandled sense code
May 24 14:08:32 node51 kernel: [51887.853794] sd 8:0:0:0: [sdi]
May 24 14:08:32 node51 kernel: [51887.853798] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
May 24 14:08:32 node51 kernel: [51887.853802] sd 8:0:0:0: [sdi]
May 24 14:08:32 node51 kernel: [51887.853805] Sense Key : Medium Error [current]
May 24 14:08:32 node51 kernel: [51887.853812] sd 8:0:0:0: [sdi]
May 24 14:08:32 node51 kernel: [51887.853815] Add. Sense: Unrecovered read error
May 24 14:08:32 node51 kernel: [51887.853819] sd 8:0:0:0: [sdi] CDB:
May 24 14:08:32 node51 kernel: [51887.853822] Read(10): 28 00 00 1b 6e 00 00 00 01 00
May 24 14:08:32 node51 kernel: [51887.853836] end_request: critical medium error, dev sdi, sector 14381056
May 24 14:08:32 node51 kernel: [51887.853849] Buffer I/O error on device sdi, logical block 1797632

로그에서 출력을 얻으려면이 명령으로 첫 번째 문제가있는 LBA (필자의 경우 14381058)를 찾았습니다.

root@node51 [~]# dd if=/dev/sdi of=/dev/zero bs=512 count=1 skip=14381058
dd: error reading ‘/dev/sdi’: Input/output error
0+0 records in
0+0 records out
0 bytes (0 B) copied, 7.49287 s, 0.0 kB/s

md포기한 것도 당연 합니다! 불량 드라이브에서 어레이를 재 구축 할 수 없습니다.

새로운 기술 (더 나은 smartmontools하드웨어 호환성)을 통해 마지막 5 개 오류 (지금까지 1393 개 오류)를 포함하여 SMART 정보를 드라이브에서 가져올 수있었습니다 .

root@node51 [~]# smartctl -a /dev/sdi
smartctl 6.2 2013-07-26 r3841 [x86_64-linux-3.13.0-43-generic] (local build)
Copyright (C) 2002-13, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF INFORMATION SECTION ===
Model Family:     Hitachi Deskstar 5K3000
Device Model:     Hitachi HDS5C3020ALA632
Serial Number:    ML2220FA040K9E
LU WWN Device Id: 5 000cca 36ac1d394
Firmware Version: ML6OA800
User Capacity:    2,000,398,934,016 bytes [2.00 TB]
Sector Size:      512 bytes logical/physical
Rotation Rate:    5940 rpm
Device is:        In smartctl database [for details use: -P show]
ATA Version is:   ATA8-ACS T13/1699-D revision 4
SATA Version is:  SATA 2.6, 6.0 Gb/s (current: 3.0 Gb/s)
Local Time is:    Sun May 24 14:13:35 2015 CDT
SMART support is: Available - device has SMART capability.
SMART support is: Enabled

=== START OF READ SMART DATA SECTION ===
SMART STATUS RETURN: incomplete response, ATA output registers missing
SMART overall-health self-assessment test result: PASSED
Warning: This result is based on an Attribute check.

General SMART Values:
Offline data collection status:  (0x84) Offline data collection activity
                                        was suspended by an interrupting command from host.
                                        Auto Offline Data Collection: Enabled.
Self-test execution status:      (   0) The previous self-test routine completed
                                        without error or no self-test has ever
                                        been run.
Total time to complete Offline
data collection:                (21438) seconds.
Offline data collection
capabilities:                    (0x5b) SMART execute Offline immediate.
                                        Auto Offline data collection on/off support.
                                        Suspend Offline collection upon new
                                        command.
                                        Offline surface scan supported.
                                        Self-test supported.
                                        No Conveyance Self-test supported.
                                        Selective Self-test supported.
SMART capabilities:            (0x0003) Saves SMART data before entering
                                        power-saving mode.
                                        Supports SMART auto save timer.
Error logging capability:        (0x01) Error logging supported.
                                        General Purpose Logging supported.
Short self-test routine
recommended polling time:        (   1) minutes.
Extended self-test routine
recommended polling time:        ( 358) minutes.
SCT capabilities:              (0x003d) SCT Status supported.
                                        SCT Error Recovery Control supported.
                                        SCT Feature Control supported.
                                        SCT Data Table supported.

SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME          FLAG     VALUE WORST THRESH TYPE      UPDATED  WHEN_FAILED RAW_VALUE
  1 Raw_Read_Error_Rate     0x000b   100   100   016    Pre-fail  Always       -       0
  2 Throughput_Performance  0x0005   136   136   054    Pre-fail  Offline      -       93
  3 Spin_Up_Time            0x0007   172   172   024    Pre-fail  Always       -       277 (Average 362)
  4 Start_Stop_Count        0x0012   100   100   000    Old_age   Always       -       174
  5 Reallocated_Sector_Ct   0x0033   100   100   005    Pre-fail  Always       -       8
  7 Seek_Error_Rate         0x000b   100   100   067    Pre-fail  Always       -       0
  8 Seek_Time_Performance   0x0005   146   146   020    Pre-fail  Offline      -       29
  9 Power_On_Hours          0x0012   097   097   000    Old_age   Always       -       22419
 10 Spin_Retry_Count        0x0013   100   100   060    Pre-fail  Always       -       0
 12 Power_Cycle_Count       0x0032   100   100   000    Old_age   Always       -       161
192 Power-Off_Retract_Count 0x0032   100   100   000    Old_age   Always       -       900
193 Load_Cycle_Count        0x0012   100   100   000    Old_age   Always       -       900
194 Temperature_Celsius     0x0002   127   127   000    Old_age   Always       -       47 (Min/Max 19/60)
196 Reallocated_Event_Count 0x0032   100   100   000    Old_age   Always       -       8
197 Current_Pending_Sector  0x0022   100   100   000    Old_age   Always       -       30
198 Offline_Uncorrectable   0x0008   100   100   000    Old_age   Offline      -       0
199 UDMA_CRC_Error_Count    0x000a   200   200   000    Old_age   Always       -       2

SMART Error Log Version: 1
ATA Error Count: 1393 (device log contains only the most recent five errors)
        CR = Command Register [HEX]
        FR = Features Register [HEX]
        SC = Sector Count Register [HEX]
        SN = Sector Number Register [HEX]
        CL = Cylinder Low Register [HEX]
        CH = Cylinder High Register [HEX]
        DH = Device/Head Register [HEX]
        DC = Device Command Register [HEX]
        ER = Error register [HEX]
        ST = Status register [HEX]
Powered_Up_Time is measured from power on, and printed as
DDd+hh:mm:SS.sss where DD=days, hh=hours, mm=minutes,
SS=sec, and sss=millisec. It "wraps" after 49.710 days.

Error 1393 occurred at disk power-on lifetime: 22419 hours (934 days + 3 hours)
  When the command that caused the error occurred, the device was active or idle.

  After command completion occurred, registers were:
  ER ST SC SN CL CH DH
  -- -- -- -- -- -- --
  40 51 06 02 70 db 00  Error: UNC 6 sectors at LBA = 0x00db7002 = 14381058

  Commands leading to the command that caused the error were:
  CR FR SC SN CL CH DH DC   Powered_Up_Time  Command/Feature_Name
  -- -- -- -- -- -- -- --  ----------------  --------------------
  25 00 08 00 70 db 40 00   1d+03:59:34.096  READ DMA EXT
  25 00 08 00 70 db 40 00   1d+03:59:30.334  READ DMA EXT
  b0 d5 01 09 4f c2 00 00   1d+03:57:59.057  SMART READ LOG
  b0 d5 01 06 4f c2 00 00   1d+03:57:58.766  SMART READ LOG
  b0 d5 01 01 4f c2 00 00   1d+03:57:58.476  SMART READ LOG

Error 1392 occurred at disk power-on lifetime: 22419 hours (934 days + 3 hours)
  When the command that caused the error occurred, the device was active or idle.

  After command completion occurred, registers were:
  ER ST SC SN CL CH DH
  -- -- -- -- -- -- --
  40 51 06 02 70 db 00  Error: UNC 6 sectors at LBA = 0x00db7002 = 14381058

  Commands leading to the command that caused the error were:
  CR FR SC SN CL CH DH DC   Powered_Up_Time  Command/Feature_Name
  -- -- -- -- -- -- -- --  ----------------  --------------------
  25 00 08 00 70 db 40 00   1d+03:59:30.334  READ DMA EXT
  b0 d5 01 09 4f c2 00 00   1d+03:57:59.057  SMART READ LOG
  b0 d5 01 06 4f c2 00 00   1d+03:57:58.766  SMART READ LOG
  b0 d5 01 01 4f c2 00 00   1d+03:57:58.476  SMART READ LOG
  b0 d5 01 00 4f c2 00 00   1d+03:57:58.475  SMART READ LOG

Error 1391 occurred at disk power-on lifetime: 22419 hours (934 days + 3 hours)
  When the command that caused the error occurred, the device was active or idle.

  After command completion occurred, registers were:
  ER ST SC SN CL CH DH
  -- -- -- -- -- -- --
  40 51 06 02 70 db 00  Error: UNC 6 sectors at LBA = 0x00db7002 = 14381058

  Commands leading to the command that caused the error were:
  CR FR SC SN CL CH DH DC   Powered_Up_Time  Command/Feature_Name
  -- -- -- -- -- -- -- --  ----------------  --------------------
  25 00 08 00 70 db 40 00   1d+03:56:28.228  READ DMA EXT
  25 00 08 00 70 db 40 00   1d+03:56:24.549  READ DMA EXT
  25 00 08 00 70 db 40 00   1d+03:56:06.711  READ DMA EXT
  25 00 10 f0 71 db 40 00   1d+03:56:06.711  READ DMA EXT
  25 00 f0 00 71 db 40 00   1d+03:56:06.710  READ DMA EXT

Error 1390 occurred at disk power-on lifetime: 22419 hours (934 days + 3 hours)
  When the command that caused the error occurred, the device was active or idle.

  After command completion occurred, registers were:
  ER ST SC SN CL CH DH
  -- -- -- -- -- -- --
  40 51 06 02 70 db 00  Error: UNC 6 sectors at LBA = 0x00db7002 = 14381058

  Commands leading to the command that caused the error were:
  CR FR SC SN CL CH DH DC   Powered_Up_Time  Command/Feature_Name
  -- -- -- -- -- -- -- --  ----------------  --------------------
  25 00 08 00 70 db 40 00   1d+03:56:24.549  READ DMA EXT
  25 00 08 00 70 db 40 00   1d+03:56:06.711  READ DMA EXT
  25 00 10 f0 71 db 40 00   1d+03:56:06.711  READ DMA EXT
  25 00 f0 00 71 db 40 00   1d+03:56:06.710  READ DMA EXT
  25 00 10 f0 70 db 40 00   1d+03:56:06.687  READ DMA EXT

Error 1389 occurred at disk power-on lifetime: 22419 hours (934 days + 3 hours)
  When the command that caused the error occurred, the device was active or idle.

  After command completion occurred, registers were:
  ER ST SC SN CL CH DH
  -- -- -- -- -- -- --
  40 51 06 02 70 db 00  Error: UNC 6 sectors at LBA = 0x00db7002 = 14381058

  Commands leading to the command that caused the error were:
  CR FR SC SN CL CH DH DC   Powered_Up_Time  Command/Feature_Name
  -- -- -- -- -- -- -- --  ----------------  --------------------
  25 00 08 00 70 db 40 00   1d+03:56:06.711  READ DMA EXT
  25 00 10 f0 71 db 40 00   1d+03:56:06.711  READ DMA EXT
  25 00 f0 00 71 db 40 00   1d+03:56:06.710  READ DMA EXT
  25 00 10 f0 70 db 40 00   1d+03:56:06.687  READ DMA EXT
  25 00 f0 00 70 db 40 00   1d+03:56:03.026  READ DMA EXT

SMART Self-test log structure revision number 1
Num  Test_Description    Status                  Remaining  LifeTime(hours)  LBA_of_first_error
# 1  Extended offline    Completed: read failure       90%     21249         14381058

SMART Selective self-test log data structure revision number 1
 SPAN  MIN_LBA  MAX_LBA  CURRENT_TEST_STATUS
    1        0        0  Not_testing
    2        0        0  Not_testing
    3        0        0  Not_testing
    4        0        0  Not_testing
    5        0        0  Not_testing
Selective self-test flags (0x0):
  After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

아…

이제이 질문을 세 가지 쉬운 단계로 해결했습니다.

  1. 3 년 후 시스템 관리자가 되십시오.
  2. 로그를 확인하십시오.
  3. 수퍼 유저로 돌아와서 3 년 전의 접근 방식을 비웃습니다 .

업데이트 (2015 년 7 월 19 일) : 궁금한 사람은 드라이브에 다시 매핑 할 섹터가 부족합니다.

root@node51 [~]# smartctl -a /dev/sdg
smartctl 6.2 2013-07-26 r3841 [x86_64-linux-3.13.0-43-generic] (local build)
Copyright (C) 2002-13, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF INFORMATION SECTION ===
Model Family:     Hitachi Deskstar 5K3000
Device Model:     Hitachi HDS5C3020ALA632
Serial Number:    ML2220FA040K9E
LU WWN Device Id: 5 000cca 36ac1d394
Firmware Version: ML6OA800
User Capacity:    2,000,398,934,016 bytes [2.00 TB]
Sector Size:      512 bytes logical/physical
Rotation Rate:    5940 rpm
Device is:        In smartctl database [for details use: -P show]
ATA Version is:   ATA8-ACS T13/1699-D revision 4
SATA Version is:  SATA 2.6, 6.0 Gb/s (current: 3.0 Gb/s)
Local Time is:    Sun Jul 19 14:00:33 2015 CDT
SMART support is: Available - device has SMART capability.
SMART support is: Enabled

=== START OF READ SMART DATA SECTION ===
SMART STATUS RETURN: incomplete response, ATA output registers missing
SMART overall-health self-assessment test result: FAILED!
Drive failure expected in less than 24 hours. SAVE ALL DATA.
See vendor-specific Attribute list for failed Attributes.

General SMART Values:
Offline data collection status:  (0x85) Offline data collection activity
                                        was aborted by an interrupting command from host.
                                        Auto Offline Data Collection: Enabled.
Self-test execution status:      ( 117) The previous self-test completed having
                                        the read element of the test failed.
Total time to complete Offline
data collection:                (21438) seconds.
Offline data collection
capabilities:                    (0x5b) SMART execute Offline immediate.
                                        Auto Offline data collection on/off support.
                                        Suspend Offline collection upon new
                                        command.
                                        Offline surface scan supported.
                                        Self-test supported.
                                        No Conveyance Self-test supported.
                                        Selective Self-test supported.
SMART capabilities:            (0x0003) Saves SMART data before entering
                                        power-saving mode.
                                        Supports SMART auto save timer.
Error logging capability:        (0x01) Error logging supported.
                                        General Purpose Logging supported.
Short self-test routine
recommended polling time:        (   1) minutes.
Extended self-test routine
recommended polling time:        ( 358) minutes.
SCT capabilities:              (0x003d) SCT Status supported.
                                        SCT Error Recovery Control supported.
                                        SCT Feature Control supported.
                                        SCT Data Table supported.

SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME          FLAG     VALUE WORST THRESH TYPE      UPDATED  WHEN_FAILED RAW_VALUE
  1 Raw_Read_Error_Rate     0x000b   099   099   016    Pre-fail  Always       -       2
  2 Throughput_Performance  0x0005   136   136   054    Pre-fail  Offline      -       93
  3 Spin_Up_Time            0x0007   163   163   024    Pre-fail  Always       -       318 (Average 355)
  4 Start_Stop_Count        0x0012   100   100   000    Old_age   Always       -       181
  5 Reallocated_Sector_Ct   0x0033   001   001   005    Pre-fail  Always   FAILING_NOW 1978
  7 Seek_Error_Rate         0x000b   086   086   067    Pre-fail  Always       -       1245192
  8 Seek_Time_Performance   0x0005   146   146   020    Pre-fail  Offline      -       29
  9 Power_On_Hours          0x0012   097   097   000    Old_age   Always       -       23763
 10 Spin_Retry_Count        0x0013   100   100   060    Pre-fail  Always       -       0
 12 Power_Cycle_Count       0x0032   100   100   000    Old_age   Always       -       167
192 Power-Off_Retract_Count 0x0032   092   092   000    Old_age   Always       -       10251
193 Load_Cycle_Count        0x0012   092   092   000    Old_age   Always       -       10251
194 Temperature_Celsius     0x0002   111   111   000    Old_age   Always       -       54 (Min/Max 19/63)
196 Reallocated_Event_Count 0x0032   001   001   000    Old_age   Always       -       2927
197 Current_Pending_Sector  0x0022   100   100   000    Old_age   Always       -       33
198 Offline_Uncorrectable   0x0008   100   100   000    Old_age   Offline      -       0
199 UDMA_CRC_Error_Count    0x000a   200   200   000    Old_age   Always       -       2

SMART Error Log Version: 1
ATA Error Count: 2240 (device log contains only the most recent five errors)
        CR = Command Register [HEX]
        FR = Features Register [HEX]
        SC = Sector Count Register [HEX]
        SN = Sector Number Register [HEX]
        CL = Cylinder Low Register [HEX]
        CH = Cylinder High Register [HEX]
        DH = Device/Head Register [HEX]
        DC = Device Command Register [HEX]
        ER = Error register [HEX]
        ST = Status register [HEX]
Powered_Up_Time is measured from power on, and printed as
DDd+hh:mm:SS.sss where DD=days, hh=hours, mm=minutes,
SS=sec, and sss=millisec. It "wraps" after 49.710 days.

Error 2240 occurred at disk power-on lifetime: 23763 hours (990 days + 3 hours)
  When the command that caused the error occurred, the device was active or idle.

  After command completion occurred, registers were:
  ER ST SC SN CL CH DH
  -- -- -- -- -- -- --
  10 51 f0 18 0f 2f 00  Error: IDNF 240 sectors at LBA = 0x002f0f18 = 3084056

  Commands leading to the command that caused the error were:
  CR FR SC SN CL CH DH DC   Powered_Up_Time  Command/Feature_Name
  -- -- -- -- -- -- -- --  ----------------  --------------------
  35 00 f0 18 0f 2f 40 00      00:25:01.942  WRITE DMA EXT
  35 00 f0 28 0e 2f 40 00      00:25:01.168  WRITE DMA EXT
  35 00 f0 38 0d 2f 40 00      00:25:01.157  WRITE DMA EXT
  35 00 f0 48 0c 2f 40 00      00:25:01.147  WRITE DMA EXT
  35 00 f0 58 0b 2f 40 00      00:25:01.136  WRITE DMA EXT

Error 2239 occurred at disk power-on lifetime: 23763 hours (990 days + 3 hours)
  When the command that caused the error occurred, the device was active or idle.

  After command completion occurred, registers were:
  ER ST SC SN CL CH DH
  -- -- -- -- -- -- --
  10 51 5a 4e f7 2e 00  Error: IDNF 90 sectors at LBA = 0x002ef74e = 3077966

  Commands leading to the command that caused the error were:
  CR FR SC SN CL CH DH DC   Powered_Up_Time  Command/Feature_Name
  -- -- -- -- -- -- -- --  ----------------  --------------------
  35 00 f0 b8 f6 2e 40 00      00:24:57.967  WRITE DMA EXT
  35 00 f0 c8 f5 2e 40 00      00:24:57.956  WRITE DMA EXT
  35 00 f0 d8 f4 2e 40 00      00:24:57.945  WRITE DMA EXT
  35 00 f0 e8 f3 2e 40 00      00:24:57.934  WRITE DMA EXT
  35 00 f0 f8 f2 2e 40 00      00:24:57.924  WRITE DMA EXT

Error 2238 occurred at disk power-on lifetime: 23763 hours (990 days + 3 hours)
  When the command that caused the error occurred, the device was active or idle.

  After command completion occurred, registers were:
  ER ST SC SN CL CH DH
  -- -- -- -- -- -- --
  10 51 40 a8 c6 2e 00  Error: IDNF 64 sectors at LBA = 0x002ec6a8 = 3065512

  Commands leading to the command that caused the error were:
  CR FR SC SN CL CH DH DC   Powered_Up_Time  Command/Feature_Name
  -- -- -- -- -- -- -- --  ----------------  --------------------
  35 00 f0 f8 c5 2e 40 00      00:24:49.444  WRITE DMA EXT
  35 00 f0 08 c5 2e 40 00      00:24:49.433  WRITE DMA EXT
  35 00 f0 18 c4 2e 40 00      00:24:49.422  WRITE DMA EXT
  35 00 f0 28 c3 2e 40 00      00:24:49.412  WRITE DMA EXT
  35 00 f0 38 c2 2e 40 00      00:24:49.401  WRITE DMA EXT

Error 2237 occurred at disk power-on lifetime: 23763 hours (990 days + 3 hours)
  When the command that caused the error occurred, the device was active or idle.

  After command completion occurred, registers were:
  ER ST SC SN CL CH DH
  -- -- -- -- -- -- --
  10 51 ea be ba 2e 00  Error: IDNF 234 sectors at LBA = 0x002ebabe = 3062462

  Commands leading to the command that caused the error were:
  CR FR SC SN CL CH DH DC   Powered_Up_Time  Command/Feature_Name
  -- -- -- -- -- -- -- --  ----------------  --------------------
  35 00 f0 b8 ba 2e 40 00      00:24:39.263  WRITE DMA EXT
  35 00 f0 c8 b9 2e 40 00      00:24:38.885  WRITE DMA EXT
  35 00 f0 d8 b8 2e 40 00      00:24:38.874  WRITE DMA EXT
  35 00 f0 e8 b7 2e 40 00      00:24:38.862  WRITE DMA EXT
  35 00 f0 f8 b6 2e 40 00      00:24:38.852  WRITE DMA EXT

Error 2236 occurred at disk power-on lifetime: 23763 hours (990 days + 3 hours)
  When the command that caused the error occurred, the device was active or idle.

  After command completion occurred, registers were:
  ER ST SC SN CL CH DH
  -- -- -- -- -- -- --
  10 51 86 c2 2a 2e 00  Error: IDNF 134 sectors at LBA = 0x002e2ac2 = 3025602

  Commands leading to the command that caused the error were:
  CR FR SC SN CL CH DH DC   Powered_Up_Time  Command/Feature_Name
  -- -- -- -- -- -- -- --  ----------------  --------------------
  35 00 f0 58 2a 2e 40 00      00:24:25.605  WRITE DMA EXT
  35 00 f0 68 29 2e 40 00      00:24:25.594  WRITE DMA EXT
  35 00 f0 78 28 2e 40 00      00:24:25.583  WRITE DMA EXT
  35 00 f0 88 27 2e 40 00      00:24:25.572  WRITE DMA EXT
  35 00 f0 98 26 2e 40 00      00:24:25.561  WRITE DMA EXT

SMART Self-test log structure revision number 1
Num  Test_Description    Status                  Remaining  LifeTime(hours)  LBA_of_first_error
# 1  Short captive       Completed: read failure       50%     23763         869280
# 2  Extended offline    Completed without error       00%     22451         -
# 3  Short offline       Completed without error       00%     22439         -
# 4  Extended offline    Completed: read failure       90%     21249         14381058
1 of 2 failed self-tests are outdated by newer successful extended offline self-test # 2

SMART Selective self-test log data structure revision number 1
 SPAN  MIN_LBA  MAX_LBA  CURRENT_TEST_STATUS
    1        0        0  Not_testing
    2        0        0  Not_testing
    3        0        0  Not_testing
    4        0        0  Not_testing
    5        0        0  Not_testing
Selective self-test flags (0x0):
  After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.


답변

제 경우에는 나쁜 소스 디스크였습니다. 그렇지 않은 것처럼 보였지만 (/ proc / mdstat는 99.9 % 이상 정상적으로 진행되었지만 실제로는 99.97 %에서 실패하여 일반 동기화가 완료 될 때와 일치했습니다.) 따라서 dmesg(1)출력 을 확인해야 합니다. 읽기 오류가 있는지 알려줍니다.

데비안 버그 # 767243 에서 내 사건에 대한 세부 정보를 볼 수 있습니다 . 마지막으로 소스 디스크에서 불량 섹터 몇 개를 강제로 덮어 써서 동기화를 완료했습니다 (제 경우에는 운 좋게도 데이터 손실이 발생했을 것입니다)


답변

당신은 시도 할 수 있습니다

sudo mdadm --assemble --update=resync /dev/md0 /dev/sdb1 /dev/sdc1

드라이브를 업데이트하고 다시 동기화하십시오.