Problem scenario
You are using a RHEL (RedHat Enterprise Linux) server in AWS. You want to install Vagrant. What do you do?
Solution
Assume the root user by issuing this command: sudo su –
Run these commands:
yum -y install wget
cd /tmp
wget https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1_x86_64.rpm
yum -y localinstall vagrant_1.8.1_x86_64.rpm
To verify the installation, run this command: vagrant version
Alternative Solution
If you do not want to install wget and curl commands will work for retrieving https locations,
…
Continue reading “How Do You Install Vagrant on an AWS Instance of RedHat Linux?”