Raid

mdadm 狀態“活動”和狀態“乾淨”有什麼區別

  • June 17, 2014

我有兩台具有不同 RAID5 陣列的不同電腦。當我執行命令時

mdadm --detail /dev/md0

一個驅動器報告“活動”,而另一個報告“狀態”欄位為“乾淨”。有什麼區別?我應該擔心任何一種狀態嗎?兩者似乎都工作正常。

來自Linux 核心文件中的Documentation/md.txt :

clean - no pending writes, but otherwise active.
    When written to inactive array, starts without resync
    If a write request arrives then
      if metadata is known, mark 'dirty' and switch to 'active'.
      if not known, block and switch to write-pending
    If written to an active array that has pending writes, then fails.
active
    fully active: IO and resync can be happening.
    When written to inactive array, starts with resync

所以,不,你不需要擔心任何一種狀態;兩者都正常執行。如果你看到了inactive,那你就不得不擔心了。

mdadm包括一個raid監視器守護程序,它將提醒您(預設通過電子郵件)您需要注意的任何情況,特別是故障磁碟。您應該確保它已配置並正在執行。

引用自:https://unix.stackexchange.com/questions/47163