#目的
備忘録。
Ansible2.8.2をCentOS7にインストールします。
epel を利用することで簡単にインストールできます。
#環境
CentOS7 を minimal イメージでインストールし、直後に yum update 実施
CentOSのバージョン
# cat /etc/centos-release
CentOS Linux release 7.6.1810 (Core)
#手順
epel リポジトリを追加
# yum install epel-release
ansible をインストール
# yum install ansible
#確認
# ansible --version
ansible 2.8.2
config file = /etc/ansible/ansible.cfg
configured module search path = [u'/root/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /usr/lib/python2.7/site-packages/ansible
executable location = /usr/bin/ansible
python version = 2.7.5 (default, Jun 20 2019, 20:27:34) [GCC 4.8.5 20150623 (Red Hat 4.8.5-36)]
#
以上です。