1.

How to setup Ansible?

Answer»

There are two ways to install it. 

  •  Using LINUX BASED installation procedure (e.g. using apt or yum) 
    • For this first add the repository to the APT using command on terminal 'sudo apt-add-repository -y ppa:ansible/ansible' 
    • Update the repository using command 'sudo apt-get update' 
    • Now install Ansible using command 'sudo apt-get install -y ansible' 
  •  Using python installer 
    • For this first install python on the local MACHINE 
    • Then using 'sudo pip install ansible' command on terminal install Ansible 
    • Later on, it can be updated using 'sudo pip install --upgrade ansible' command 
    • Once Ansible is installed, then verify it with command 'ansible --VERSION' on the terminal. 


Discussion

No Comment Found