Configuring the Ansible Installer Virtual Machine
This article details how to prepare the Ansible installer VM (ready to configure), and run the Lightbits installer packages.
You will first need to SSH into your Ansible installer VM.
Installing wget
The tool of choice for downloading packages is wget. If you have another preferred method, you can use that and change the commands in the rest of the guide.
- Install wget.
sudo yum install -y wgetInstalling Docker
- Install Yum utils and add the Centos repo.
sudo yum install -y yum-utilssudo yum-config-manager \ --add-repo \ https://download.docker.com/linux/centos/docker-ce.repo- Install Docker.
sudo yum install docker-ce docker-ce-cli containerd.io docker-compose-plugin- Enable and start Docker.
sudo systemctl enable docker && sudo systemctl start dockerWas this page helpful?