Get your server issues fixed by our experts for a price starting at just 25 USD/Hour. Click here to register and open a ticket with us now!

Author Topic: Install Ansible in RHEL 7/CentOS 7 in one step  (Read 4669 times)

0 Members and 1 Guest are viewing this topic.

aneeshs

  • Guest
Install Ansible in RHEL 7/CentOS 7 in one step
« on: August 05, 2017, 04:32:42 pm »
Ansible is a radically simple IT automation platform that makes your applications and systems easier to deploy and its is a configuration management and provisioning tool, similar to Chef or Puppet. Here I'll introduce a one step procedure to install Ansible in RHEL 7/CentOS 7

Login to your server as root and run the following command:
Code: [Select]
yum -y update; yum -y install vim; yum -y install wget; mkdir /tmp/ansible/; cd /tmp/ansible; wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm; sudo yum -y install epel-release-latest-7.noarch.rpm;
yum -y install ansible; ansible --version;

:)