2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

raid6でデバイスを1個追加してパーティションの拡張を忘れてrebootしたら事故った(解決)

Posted at

前回↓
https://qiita.com/soybean/items/4ae0da04ae80bda1b0b9

前回raid6で7枚のSSDで組んだが、手狭になったので1台追加した。

前回と同じくmdadm で--addしたまではよかったが、

sudo resize2fs /dev/md127

をし忘れた。

その後、再起動すると...

sudo mdadm -D /dev/md127  
/dev/md127:
           Version : 1.2
        Raid Level : raid0
     Total Devices : 7
       Persistence : Superblock is persistent

             State : inactive
   Working Devices : 7

              Name : wstat000001:127  (local to host wstat000001)
              UUID : dd6b134e:d2c168ca:31070d48:452c4b38
            Events : 33526

    Number   Major   Minor   RaidDevice

       -       8       64        -        /dev/sde
       -       8       32        -        /dev/sdc
       -       8        0        -        /dev/sda
       -       8      112        -        /dev/sdh
       -       8       80        -        /dev/sdf
       -       8       48        -        /dev/sdd
       -       8       96        -        /dev/sdg

無事死亡していました。inactiveです。
sdjというのが見当たりませんので、8デバイスのはずが7デバイスにとどまっていて1個足りません。
とりあえず、mdadmを止めます

sudo mdadm --stop /dev/md127

そして、手動で再構成

sudo mdadm --assemble --force /dev/md127 /dev/sda /dev/sdc /dev/sdd /dev/sde /dev/sdf /dev/sdg /dev/sdh   

そうしたら、全てのデバイスが認識されたので、あとは

sudo mdadm --add /dev/md127 /dev/sdj

として、追加したssdをraidグループに放り込み、リカバリーを開始

md127 : active raid6 sdj1[8] sda[0] sdh[7] sdg[6] sdf[5] sde[4] sdd[2](F) sdc[1]
      5860196352 blocks super 1.2 level 6, 512k chunk, algorithm 2 [8/6] [UU_UUUU_]
      [==>..................]  recovery = 12.4% (121730060/976699392) finish=78.4min speed=181585K/sec
      bitmap: 5/8 pages [20KB], 65536KB chunk

unused devices: <none>

最後に、忘れずにパーティションの拡張

sudo resize2fs /dev/md127
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?