CentOS 7.8にAnsibleをインストール

2020年10月1日

備忘録です。
環境はCentOS 7.8 です。

1
2
$ cat /etc/redhat-release
CentOS Linux release 7.8.2003 (Core)

epel を利用して yum でインストールします。

1
2
$ sudo yum install epel-release
$ sudo yum install ansible

作業日(2020/9/23)時点でインストールされたのは ver 2.9.10でした。

1
2
3
4
5
6
7
8
9
10
11
$ rpm -q ansible
ansible-2.9.10-1.el7.noarch
 
$ ansible --version
ansible 2.9.10
  config file = /etc/ansible/ansible.cfg
  configured module search path = [u'/home/tomi/.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, Apr  2 2020, 13:16:51) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)]
[tomi@localhost ~]$

技術・開発ansible,centos

Posted by tomi