The following are the terms and tools within the overall principles described above that successful DevOps engineers need to know
INSTALLATION OF ANSIBLE IN UBUNTU
To start using Ansible as a way to manage various servers, you need to install Ansible software on at least one computer.
To get the latest version of Ansible for Ubuntu, add the project's Personal Package Archive (PPA) to your system. However, before doing this, first make sure that the software-properties-common package is installed. This software makes it easier to manage this software library and other stand-alone software libraries:
#sudo apt update
#sudo apt install software-properties-common
Then add the Ansible PPA by typing the following command:
#sudo apt-add-repository ppa:ansible/ansible
Next, update the system's package index again so that the PPA can identify the available packages.
# sudo apt update
Install ansible ubuntu
# sudo apt install ansible
Hence ansible is installed in ubuntu
# ansible --version