December 2015
Intermediate to advanced
250 pages
4h 41m
English
Ansible is not in the default RHEL 7 repositories, but in this recipe, I will show you how to install it in several ways.
Ansible needs the following packages installed:
python-httplib2python-jinja2python-paramikopython-setuptoolsPyYAMLSo, in order to achieve this, execute the following command:
~]# yum install -y python-httplib2 python-jinja2 python-keyczar python-paramiko python-setuptools PyYAML
As RHEL 7 and some other major distributions come preinstalled with Python (yum requires it, as do most of the Red Hat tools), we don't have to include it in the preceding command.
In this recipe, I will cover the three most used methods of installing Ansible.
Read now
Unlock full access