Linux - How to install and configure ansible on fedora, Installing Ansible Playbook

How to install and configure ansible on fedora

Great things about Ansible is that you dont need to install an Ansible client on the servers you are managing. You only need to install Ansible on your local machine or on a master server that can connect to the managed servers via SSH. Ansible works by configuring client machines from a Master computer with Ansible components installed and configured.

Update fedora repository
 # rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm

Search for ansible Installation packages
 # yum search ansible 

  ansible-fireball.noarch : Ansible fireball transport support
  ansible-inventory-grapher.noarch : Creates graphs representing ansible inventory
  ansible-node-fireball.noarch : Ansible fireball transport - node end support
  ansible.noarch : SSH-based configuration management, deployment, and task execution system
  ansible-lint.noarch : Best practices checker for Ansible

Install ansible playbook
 # yum install ansible -y

The topic on Linux - How to install and configure ansible on fedora is posted by - Math

Hope you have enjoyed, Linux - How to install and configure ansible on fedoraThanks for your time

Tech Bluff