Installing Ansible
Next, install Ansible. Here are the steps to make that happen:
Log into the Ubuntu Server that will host Ansible
Install the necessary repository with the command sudo apt-add-repository ppa:ansible/ansible.
Update apt with the command sudo apt-get update.
Install Ansible with the command sudo apt-get install ansible -y.
Because Ansible requires a Python interpreter (in order to run its modules), we need to install Python as well. For that, issue the command:
sudo apt-get install python -y
Note: You may find Python already installed.
At this point, Ansible is installed and ready to go.
No comments:
Post a Comment