RAID 5アレイの物理ボリューム数(スロット数)を増やすコマンドの例
RAID 5アレイの物理ボリューム数(スロット数)を増やすコマンドの例です。ここでは例として、アレイを構成する物理ボリュームの数を1つ追加します。
追加する物理ボリュームは「/dev/sdg4」です。
環境について
以下のアレイを作成した環境でコマンドを実行しています。1.論理ボリュームの確認
比較のため現状の論理ボリュームの情報を確認します。物理ボリュームの数は3つです。
ubuntu@vb-ubuntu1310:~$ sudo mdadm --detail /dev/md/RAID5Array
/dev/md/RAID5Array:
Version : 1.2
Creation Time : Thu Apr 17 21:38:47 2014
Raid Level : raid5
Array Size : 204544 (199.78 MiB 209.45 MB)
Used Dev Size : 102272 (99.89 MiB 104.73 MB)
Raid Devices : 3
Total Devices : 3
Persistence : Superblock is persistent
Update Time : Thu Apr 17 21:38:53 2014
State : clean
Active Devices : 3
Working Devices : 3
Failed Devices : 0
Spare Devices : 0
Layout : left-symmetric
Chunk Size : 128K
Name : vb-ubuntu1310:RAID5Array (local to host vb-ubuntu1310)
UUID : 1fc573a1:dee36701:eebee070:60f9346c
Events : 18
Number Major Minor RaidDevice State
0 8 52 0 active sync /dev/sdd4
1 8 68 1 active sync /dev/sde4
3 8 84 2 active sync /dev/sdf4
/dev/md/RAID5Array:
Version : 1.2
Creation Time : Thu Apr 17 21:38:47 2014
Raid Level : raid5
Array Size : 204544 (199.78 MiB 209.45 MB)
Used Dev Size : 102272 (99.89 MiB 104.73 MB)
Raid Devices : 3
Total Devices : 3
Persistence : Superblock is persistent
Update Time : Thu Apr 17 21:38:53 2014
State : clean
Active Devices : 3
Working Devices : 3
Failed Devices : 0
Spare Devices : 0
Layout : left-symmetric
Chunk Size : 128K
Name : vb-ubuntu1310:RAID5Array (local to host vb-ubuntu1310)
UUID : 1fc573a1:dee36701:eebee070:60f9346c
Events : 18
Number Major Minor RaidDevice State
0 8 52 0 active sync /dev/sdd4
1 8 68 1 active sync /dev/sde4
3 8 84 2 active sync /dev/sdf4
2.物理ボリューム数の変更
以下のコマンドを実行し、物理ボリュームの数を変更します。コマンドやオプションの説明は「物理ボリューム数(スロット数)を変更するコマンドの説明」を参考にしてください。
sudo mdadm --grow /dev/md/RAID5Array --raid-devices=4 --backup-file=/root/RAID5ArrayBackup.reshape --add /dev/sdg4
3.コマンドの実行結果
以下のようにコマンドの実行結果が表示されます。
ubuntu@vb-ubuntu1310:~$ sudo mdadm --grow /dev/md/RAID5Array --raid-devices=4 --backup-file=/root/RAID5ArrayBackup.reshape --add /dev/sdg4
mdadm: added /dev/sdg4
mdadm: Need to backup 768K of critical section..
mdadm: added /dev/sdg4
mdadm: Need to backup 768K of critical section..
4.論理ボリュームの確認
論理ボリュームの情報を確認します。物理ボリュームの数が4つになっています。
ubuntu@vb-ubuntu1310:~$ sudo mdadm --detail /dev/md/RAID5Array
/dev/md/RAID5Array:
Version : 1.2
Creation Time : Thu Apr 17 21:38:47 2014
Raid Level : raid5
Array Size : 306816 (299.68 MiB 314.18 MB)
Used Dev Size : 102272 (99.89 MiB 104.73 MB)
Raid Devices : 4
Total Devices : 4
Persistence : Superblock is persistent
Update Time : Thu Apr 17 21:41:41 2014
State : clean
Active Devices : 4
Working Devices : 4
Failed Devices : 0
Spare Devices : 0
Layout : left-symmetric
Chunk Size : 128K
Name : vb-ubuntu1310:RAID5Array (local to host vb-ubuntu1310)
UUID : 1fc573a1:dee36701:eebee070:60f9346c
Events : 43
Number Major Minor RaidDevice State
0 8 52 0 active sync /dev/sdd4
1 8 68 1 active sync /dev/sde4
3 8 84 2 active sync /dev/sdf4
4 8 100 3 active sync /dev/sdg4
/dev/md/RAID5Array:
Version : 1.2
Creation Time : Thu Apr 17 21:38:47 2014
Raid Level : raid5
Array Size : 306816 (299.68 MiB 314.18 MB)
Used Dev Size : 102272 (99.89 MiB 104.73 MB)
Raid Devices : 4
Total Devices : 4
Persistence : Superblock is persistent
Update Time : Thu Apr 17 21:41:41 2014
State : clean
Active Devices : 4
Working Devices : 4
Failed Devices : 0
Spare Devices : 0
Layout : left-symmetric
Chunk Size : 128K
Name : vb-ubuntu1310:RAID5Array (local to host vb-ubuntu1310)
UUID : 1fc573a1:dee36701:eebee070:60f9346c
Events : 43
Number Major Minor RaidDevice State
0 8 52 0 active sync /dev/sdd4
1 8 68 1 active sync /dev/sde4
3 8 84 2 active sync /dev/sdf4
4 8 100 3 active sync /dev/sdg4
5.バックアップGPTデータの修復
パーティションテーブルの形式が「GPT」の場合、ここでバックアップGPTデータを修復します。ここでは例として、「gdisk」を利用してバックアップGPTデータを修復します。
ubuntu@vb-ubuntu1310:~$ sudo gdisk /dev/md/RAID5Array
GPT fdisk (gdisk) version 0.8.7
Partition table scan:
MBR: protective
BSD: not present
APM: not present
GPT: present
Found valid GPT with protective MBR; using GPT.
Command (? for help): r
Recovery/transformation command (? for help): e
Warning! This will probably do weird things if you've converted an MBR to
GPT form and haven't yet saved the GPT! Proceed? (Y/N): y
Recovery/transformation command (? for help): w
Warning! Secondary header is placed too early on the disk! Do you want to
correct this problem? (Y/N): y
Have moved second header and partition table to correct location.
Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING
PARTITIONS!!
Do you want to proceed? (Y/N): y
OK; writing new GUID partition table (GPT) to /dev/md/RAID5Array.
The operation has completed successfully.
GPT fdisk (gdisk) version 0.8.7
Partition table scan:
MBR: protective
BSD: not present
APM: not present
GPT: present
Found valid GPT with protective MBR; using GPT.
Command (? for help): r
Recovery/transformation command (? for help): e
Warning! This will probably do weird things if you've converted an MBR to
GPT form and haven't yet saved the GPT! Proceed? (Y/N): y
Recovery/transformation command (? for help): w
Warning! Secondary header is placed too early on the disk! Do you want to
correct this problem? (Y/N): y
Have moved second header and partition table to correct location.
Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING
PARTITIONS!!
Do you want to proceed? (Y/N): y
OK; writing new GUID partition table (GPT) to /dev/md/RAID5Array.
The operation has completed successfully.
念の為、チェックも行っておきます。
ubuntu@vb-ubuntu1310:~$ sudo gdisk /dev/md/RAID5Array
GPT fdisk (gdisk) version 0.8.7
Partition table scan:
MBR: protective
BSD: not present
APM: not present
GPT: present
Found valid GPT with protective MBR; using GPT.
Command (? for help): v
No problems found. 208061 free sectors (101.6 MiB) available in 2
segments, the largest of which is 206047 (100.6 MiB) in size.
GPT fdisk (gdisk) version 0.8.7
Partition table scan:
MBR: protective
BSD: not present
APM: not present
GPT: present
Found valid GPT with protective MBR; using GPT.
Command (? for help): v
No problems found. 208061 free sectors (101.6 MiB) available in 2
segments, the largest of which is 206047 (100.6 MiB) in size.
以上で完了です。
以下の手順は任意です。
6.パーティション(ファイルシステム)の調整
物理ボリュームの数を増やしたため、論理ボリュームのサイズも増えています。既存のパーティション(ファイルシステム)を拡大することができます。
もちろん空き領域に新規にパーティションを作ってもよいです。
ここでは既存のパーティション(ファイルシステム)を拡大します。
現状以下のようにパーティションが1つ存在します。
このパーティションを目一杯拡大します。
拡大するパーティションの情報は、以下のようになっています。
7.パーティション(ファイルシステム)の拡大
パーティション(ファイルシステム)の拡大を行います。8.パーティション(ファイルシステム)の拡大完了
パーティション(ファイルシステム)の拡大後のパーティションの情報を確認します。全体的に見ると以下のようになります。
パーティションの情報を見ると、以下のようになっています。