配置Lustre文件系统
创建MGS/MDT组合和两个OST以构成名为temp的文件系统。使用了三个块设备,一个用于MGS/MDT的组合节点,另两个用于OST节点。
- 配置LNet网络。
- 块设备上创建一个MGS/MDT组合文件系统,并进行挂载。
1 2
mkfs.lustre --fsname=lustre --mgs --mdt --index=0 /dev/sdb2 mount -t lustre /dev/sdb2 /mnt/mdt
- 创建并挂载ost0。
1 2
mkfs.lustre --reformat --fsname=lustre --mgsnode=192.168.1.1@tcp1 --ost --index=0 /dev/sdb3 mount -t lustre /dev/sdb3 /mnt/ost0
- 创建并挂载ost1。
1 2
mkfs.lustre --reformat --fsname=lustre --mgsnode=192.168.1.1@tcp1 --ost --index=1 /dev/sdb4 mount -t lustre /dev/sdb4 /mnt/ost1
父主题: 安装Lustre服务端