linux – mdadm:正在重建哪个磁盘?

前端之家收集整理的这篇文章主要介绍了linux – mdadm:正在重建哪个磁盘?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我注意到我的软件RAID1降级了,并想知道阵列中的两个磁盘中的哪一个正在重建/重新同步,因为它们都显示为up.我希望有人可以对此有所了解,如果甚至可以弄清楚软件RAID1中的哪些磁盘降级并重建为.
# cat /proc/mdstat
md1 : active raid1 sda2[0] sdb2[1]
  955789176 blocks super 1.0 [2/2] [UU]
  [==============>......]  resync = 72.2% (690357504/955789176) finish=4025.9min speed=1098K/sec

md0 : active raid1 sda1[0] sdb1[1]
  20970424 blocks super 1.0 [2/2] [UU]

unused devices: <none>

# mdadm --detail /dev/md1
/dev/md1:
        Version : 1.0
  Creation Time : Fri Dec  7 04:55:25 2012
     Raid Level : raid1
     Array Size : 955789176 (911.51 GiB 978.73 GB)
  Used Dev Size : 955789176 (911.51 GiB 978.73 GB)
   Raid Devices : 2
  Total Devices : 2
    Persistence : Superblock is persistent

    Update Time : Fri Mar 29 23:41:16 2013
          State : active,resyncing 
 Active Devices : 2
Working Devices : 2
 Failed Devices : 0
  Spare Devices : 0

  Resync Status : 72% complete

           Name : 
           UUID : 
         Events : 222

    Number   Major   Minor   RaidDevice State
       0       8        2        0      active sync   /dev/sda2
       1       8       18        1      active sync   /dev/sdb2

提前致谢!

解决方法

我将使用iostat提供的信息,因为没有其他任何东西可以访问软件RAID之外的单个磁盘:
# iostat
avg-cpu:  %user   %nice  %system  %iowait  %steal  %idle
          15.35   0.00   1.81     0.27     0.00    82.57

Device:         tps        Blk_read/s   Blk_wrtn/s   Blk_read    Blk_wrtn
sdb             219.27     996.77       19033.92     90847986    1734799374
sda             233.08     17037.32     3364.78      1552824003  306674334

看起来/ dev / sdb是这里降级的驱动器:)

原文链接:https://www.f2er.com/linux/401422.html

猜你在找的Linux相关文章