6
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Ansible2.8をCentOS7にインストールする

Posted at

#目的
備忘録。
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)]
#

以上です。

6
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?