Skip to content

configure client

Lokman Rahmani edited this page Dec 27, 2017 · 1 revision
  1. Install base-os and general configuration here

  2. Download Lustre client RPMs

> cat to_download_client
https://downloads.hpdd.intel.com/public/lustre/latest-release/el7/client/RPMS/x86_64/kmod-lustre-client-2.10.2-1.el7.x86_64.rpm
https://downloads.hpdd.intel.com/public/lustre/latest-release/el7/client/RPMS/x86_64/lustre-client-2.10.2-1.el7.x86_64.rpm
https://downloads.hpdd.intel.com/public/lustre/latest-release/el7/client/RPMS/x86_64/kmod-lustre-client-tests-2.10.2-1.el7.x86_64.rpm
https://downloads.hpdd.intel.com/public/lustre/latest-release/el7/client/RPMS/x86_64/lustre-client-tests-2.10.2-1.el7.x86_64.rpm
> wget $(cat to_download_client)
  1. Install client modules
yum localinstall kmod-lustre-client-2.10.2-1.el7.x86_64.rpm lustre-client-2.10.2-1.el7.x86_64.rpm
  1. Install client test modules
# TOFIX require lustre-iokit
yum localinstall kmod-lustre-client-tests-2.10.2-1.el7.x86_64.rpm lustre-client-tests-2.10.2-1.el7.x86_64.rpm
  1. Connect to the storageNET
# Temporary configuration
ifconfig enp0s3 192.168.57.22 netmask 255.255.255.0 broadcast 192.168.57.255
# Or permanent configuration
echo "
# Get the MAC addr from vm settings on vbox
HWADDR=08:00:27:d1:90:6c  
TYPE=Ethernet
PROXY_METHOD=none
BROWSER_ONLY=no
# Dont use dhcp
BOOTPROTO=no
IPADDR=192.168.57.22
PREFIX=24
DEFROUTE=yes
IPV6INIT=no
NAME=enp0s3
DEVICE=enp0s3
ONBOOT=yes
" > /etc/sysconfig/network-scripts/ifcfg-enp0s3
systemctl restart network.service
# Test network connectivity with the MGS/MDT
ping 192.168.57.3
telnet 192.168.57.3 988
  1. Mount litio lustre filesystem
mkdir /mnt/litio/
mount -t lustre 192.168.57.3@tcp:/litio  /mnt/litio/
  1. Check if lustre is correctly mounted
lfs df -h

Clone this wiki locally