Skip to content

Installing Ansible

Avatar photo

https://www.linkedin.com/in/gineesh/ https://twitter.com/GiniGangadharan

You may refer installation doc from official document as well.

Requirement

Controlnodes

Controlnode is just the machine where we install the Ansible program and will contain copies of your project file including ansible playbooks. It can be a workstation, a virtual machine or a dedicated server in the environment.

  • No specific HW requirements for control node server

Linux/Unix systems only (Windows not currently supported) Software

  • Ansible (ansible.com/get-started)
  • Python 2.6 or later
  • Python2-winrm (0.2.2 or later) provides pywinrm python package

Managed Hosts

These are listed servers or nodes in the inventory โ€“ defined as static or via dynamic inventory scripts โ€“ on which Ansible commands or playbook tasks need to be executed.

Linux

  • Linux managed hosts need to have Python 2 (2.4 or later) installed for most modules to work.
  • python-simplejson (if old RHEL5)
  • libselinux=python (if SELinux is enabled)

Windows

  • Most of the modules specifically designed for Microsoft Windows hosts require PowerShell 3.0 or higher on the managed host rather than Python.
  • PowerShell remoting enabled.

Installing Ansible

Check installed python version

yum list installed python

Install Ansible

yum install -y ansible 

Test installed version

[devops@ansible-box dep-install]$ ansible --version
ansible 2.3.1.0
config file = /etc/ansible/ansible.cfg
configured module search path = Default w/o overrides
python version = 2.7.5 (default, Aug 2 2016, 04:20:16) [GCC 4.8.5 20150623 (Red Hat 4.8.5-4)]

Other Methods
Ansible can be installed via โ€œpipโ€, the Python package manager. If โ€˜pipโ€™ isnโ€™t already available in your version of Python, you can get pip by:

$ sudo easy_install pip

Then install Ansible with

$ sudo pip install ansible

PPA Repo

$ sudo apt-get install ansible

If CentOS, configure EPEL repo (Extra Packages for Enterprise Linux)

sudo yum -y install epel-release

Want to know more about Ansible ? Read next part on Deploying Ansible

See all parts of  Automation with Ansible Guides here

Disclaimer:

The views expressed and the content shared in all published articles on this website are solely those of the respective authors, and they do not necessarily reflect the views of the author’s employer or the techbeatly platform. We strive to ensure the accuracy and validity of the content published on our website. However, we cannot guarantee the absolute correctness or completeness of the information provided. It is the responsibility of the readers and users of this website to verify the accuracy and appropriateness of any information or opinions expressed within the articles. If you come across any content that you believe to be incorrect or invalid, please contact us immediately so that we can address the issue promptly.

Avatar photo


https://www.linkedin.com/in/gineesh/ https://twitter.com/GiniGangadharan
Gineesh Madapparambath is the founder of techbeatly and he is the author of the book - ๐—”๐—ป๐˜€๐—ถ๐—ฏ๐—น๐—ฒ ๐—ณ๐—ผ๐—ฟ ๐—ฅ๐—ฒ๐—ฎ๐—น-๐—Ÿ๐—ถ๐—ณ๐—ฒ ๐—”๐˜‚๐˜๐—ผ๐—บ๐—ฎ๐˜๐—ถ๐—ผ๐—ป. He has worked as a Systems Engineer, Automation Specialist, and content author. His primary focus is on Ansible Automation, Containerisation (OpenShift & Kubernetes), and Infrastructure as Code (Terraform). (aka Gini Gangadharan - iamgini.com)

Comments

4 Responses

  1. […] we all know Ansible installation is coming with default modules and you don’t need to download or configure any additional […]

  2. […] Kubespray is fully relying on Ansible, you need a Linux based machine (Red Hat, Debian, CentOS, macOS, any of the BSDs, and so on) for […]

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.