Skip to content

configure mgs mds

Lokman Rahmani edited this page Jan 2, 2018 · 3 revisions
  1. Install base-os, lustre linux kernel, and lustre packages here

  2. Configure the network, connect to storageNET

ifconfig enp0s3 192.168.57.3 netmask 255.255.255.0 broadcast 192.168.57.255
  1. Format the MGT and MDT
mkfs.lustre --mgs /dev/sdb # MGT
mkfs.lustre --fsname=litio --mgsnode=192.168.57.3@tcp --mdt --index=0  /dev/sdc # MDT
  1. Start the MGS and MDS
mkdir /mnt/mgt /mnt/mdt
mount -t lustre /dev/sdb /mnt/mgt # MGS
mount -t lustre /dev/sdc /mnt/mdt # MDS
Clone this wiki locally