LSI MegaRAID 9261-8iを使ってHDD*4、SSD*1、LTOドライブをつないでMicroServer N54Lに組み込んでProxmox Backup Serverを構築します。
N54Lは4つの3.5インチベイに5インチベイが1つあります。HDDを3.5インチベイに、LTOドライブを5インチベイに入れるとBoot用のSSDは入れる場所がありません。5インチベイと3.5インチベイの間にはちょっとスペースがあるのでそこに置いてあります。
RAIDカード上のBoot用のディスクを認識させるためにシングルディスクのRAID0のとしてLDを登録します。JBODはうまく設定できませんでした。
起動時にCtrl + YでPreBoot CLIに入ります。
Boot用ディスクを探して、Enclosure DeivceとSlot Numberをメモします。
$ PDlist -aALL -page20 : Enclosure Deivce ID: 252 Slot Number: 4 :
メモしたものに従ってLDを追加します。
$ CfgLDadd -r0 [252:4] WB -a0
USBメモリにProxmox Backup Serverのインストーラを書き込んでbootさせ、インストールします。
次に、バックアップ領域に使うディスクを設定してきます。
unzip、alien、libncurses5をインストールします。
# apt update # apt install unzip alien libncurses5
megacliを使いたいので8-07-14_MegaCLI.zipをダウンロードして転送したら、解凍、alienでrpmをdebに変換し、インストールします。
# unzip 8-07-14_MegaCLI.zip # cd Linux/ # alien -k --scripts MegaCli-8.07.14-1.noarch.rpm # dpkg -i megacli_8.07.14-1_all.deb
次にRAID6で構築していきます。
# /opt/MegaRAID/MegaCli/MegaCli64 CfgLDadd -r6 [252:0,252:1,252:2,252:3] WB -a0
設定後、以下のようにbootディスクのLDとデータ用のLDが見えるようになります。
# /opt/MegaRAID/MegaCli/MegaCli64 -LDInfo -Lall -aALL Adapter 0 -- Virtual Drive Information: Virtual Drive: 0 (Target Id: 0) Name : RAID Level : Primary-0, Secondary-0, RAID Level Qualifier-0 Size : 110.827 GB Sector Size : 512 Parity Size : 0 State : Optimal Strip Size : 64 KB Number Of Drives : 1 Span Depth : 1 Default Cache Policy: WriteBack, ReadAheadNone, Cached, No Write Cache if Bad BBU Current Cache Policy: WriteBack, ReadAheadNone, Cached, No Write Cache if Bad BBU Default Access Policy: Read/Write Current Access Policy: Read/Write Disk Cache Policy : Disk's Default Encryption Type : None Default Power Savings Policy: Controller Defined Current Power Savings Policy: None Can spin up in 1 minute: No LD has drives that support T10 power conditions: No LD's IO profile supports MAX power savings with cached writes: No Is VD Cached: No Virtual Drive: 1 (Target Id: 1) Name : RAID Level : Primary-6, Secondary-0, RAID Level Qualifier-3 Size : 5.456 TB Sector Size : 512 Parity Size : 5.456 TB State : Optimal Strip Size : 64 KB Number Of Drives : 4 Span Depth : 1 Default Cache Policy: WriteBack, ReadAheadNone, Cached, No Write Cache if Bad BBU Current Cache Policy: WriteBack, ReadAheadNone, Cached, No Write Cache if Bad BBU Default Access Policy: Read/Write Current Access Policy: Read/Write Disk Cache Policy : Disk's Default Encryption Type : None Default Power Savings Policy: Controller Defined Current Power Savings Policy: None Can spin up in 1 minute: Yes LD has drives that support T10 power conditions: No LD's IO profile supports MAX power savings with cached writes: Yes Is VD Cached: Yes Cache Cade Type : Read Only
あとはWeb画面からデータストアを追加すればバックアップサーバの構築は完了です。