-
Notifications
You must be signed in to change notification settings - Fork 1
configure machines basic
Lokman Rahmani edited this page Dec 27, 2017
·
4 revisions
- Boot the vm with
CentOS-7-x86_64-Minimal-1708.isoas a live CD - Install CentOS and reboot
- Configure network
- Install dependencies and recommended packages and tools
## dependencies from http://lustre.ornl.gov/lustre101-courses/content/C1/L3/LustreBasicInstall.pdf, page 10
yum install perl libgssglue net-snmp libyaml sg3_utils openmpi lsof rsync
## useful tools
yum install wget net-tools telnet - Configure the system
## Ensure that each machine has a non-loopback entry for itself in /etc/hosts
echo "" > /etc/hosts
## Create an entry in /etc/modprobe.d/lustre.conf
echo "options lnet networks=tcp" > /etc/modprobe.d/lustre.conf
## Disable firewall
systemctl disable firewalld
systemctl stop firewalld
## Disable SELinux
sed -i '/^SELINUX=/c\SELINUX=disabled' /etc/sysconfig/selinux