This CentOS VM image will be staged with packages used to support multiple lab exercises.
Deploy this VM on your assigned cluster if directed to do so as part of Lab Setup.
Only deploy the VM once, it does not need to be cleaned up as part of any lab completion.In Prism Central > select > Virtual Infrastructure > VMs, and click Create VM.
Fill out the following fields:
Click Save to create the VM.
Power on the VM.
Login to the VM via ssh or Console session, using the following credentials:
Install the software needed by running the following commands:
yum update -y
yum install -y ntp ntpdate unzip stress nodejs python-pip s3cmd awscli
npm install -g request
npm install -g express
Enable and configure NTP by running the following commands:
systemctl start ntpd
systemctl enable ntpd
ntpdate -u -s 0.pool.ntp.org 1.pool.ntp.org 2.pool.ntp.org 3.pool.ntp.org
systemctl restart ntpd
Disable the firewall and SELinux by running the following commands:
systemctl disable firewalld
systemctl stop firewalld
setenforce 0
sed -i 's/enforcing/disabled/g' /etc/selinux/config /etc/selinux/config
Install Python by running the following commands:
yum -y install python36
python3.6 -m ensurepip
yum -y install python36-setuptools
pip install -U pip
pip install boto3