LoginSignup
8
7

More than 3 years have passed since last update.

Amazon Linux2 に Ansible をインストールする

Posted at

はじめに

Amazon Linux の EOL(2020/12/31まで延長された)対応ということで、
Jenkins サーバを Amazon Linux 2 へ移行!!
そんななかやった作業 Ansible のインストールのメモ
(2020/01/28 時点)
他の作業は、別エントリーで書く予定

環境

$ cat /etc/os-release
NAME="Amazon Linux"
VERSION="2"
ID="amzn"
ID_LIKE="centos rhel fedora"
VERSION_ID="2"
PRETTY_NAME="Amazon Linux 2"
ANSI_COLOR="0;33"
CPE_NAME="cpe:2.3:o:amazon:amazon_linux:2"
HOME_URL="https://amazonlinux.com/"

epel インストール

$ sudo amazon-linux-extras install epel

Ansible インストール

$ sudo yum install ansible

インストール確認

$ ansible --version
ansible 2.9.2
  config file = /etc/ansible/ansible.cfg
  configured module search path = [u'/home/ec2-user/.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.16 (default, Dec 12 2019, 23:58:22) [GCC 7.3.1 20180712 (Red Hat 7.3.1-6)]
8
7
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
8
7