How To Install Ansible on CentOS 7 Step by Step

Ansible is a radically simple IT automation engine that simplifies cloud computing, configuration management, program setup, intra-service orchestration, and several other IT needs. Ansible uses a very simple language (YAML, in the form of Ansible Playbooks) that allow you to spell out your automation jobs in a way that means plain English. Using Ansible you can control multi host or device simultaneously using single command. You don’t need install client in apparatus or each server. In this tutorial we will learn how To install Ansible on CentOS 7 Step by Step.

Prerequisites

This tutorial assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo’ to the commands to get root privileges. I will show you through the step by step installation Ansible on a CentOS 7 server.

Install Ansible on CentOS 7

Step 1. First let’s start by ensuring your system is up-to-date.

yum clean all
yum install -y epel-release
yum -y update

Step 2. Installing Ansible on CentOS 7.

Method 1. Install Ansible from EPEL repository.

yum install ansible

Check the version of Ansible that is installed:

ansible --version

Method 2. Install Ansible from Source.

First, Installation of all required prerequisites to perform Ansible compilation:

yum install make git make gcc python-devel libffi-devel openssl-devel epel-release python-sphinx

Next, install python package manager:

yum install python-pip
pip install --upgrade setuptools

Then, download the Ansible source code using git command:

git clone git://github.com/ansible/ansible.git
cd ansible

Select desired version:

git checkout stable-2.3

Now check that Ansible is installed with the following command:

ansible --version

Congratulation’s! You have successfully installed Ansible. Thanks for using this tutorial for installing Ansible in CentOS 7 system. For additional help or useful information, we recommend you to check the official Ansible web site.

Leave a Reply