티스토리 뷰

AWS

install on centos7 + docker +awx 17.1.0

fendys 2022. 6. 2. 17:03
반응형
yum install epel-release

yum update

yum -y install git gcc gcc-c++ ansible nodejs gettext device-mapper-persistent-data lvm2 bzip2 python3-pip python-docker wget nano

yum -y install docker-ce

systemctl start docker

systemctl enable docker

pip3 install --upgrade pip

pip3 install setuptools_rust

pip3 install wheel

pip3 install docker-compose

yum -y install libselinux-python3

cd /data

git clone -b 17.1.0 https://github.com/ansible/awx.git

cd awx/installer/

vi inventory
##########
# This will create or update a default admin (superuser) account in AWX, if not provided
# then these default values are used
admin_user=admin
admin_password=password
project_data_dir="/data/projects"
############

ansible-playbook -i inventory install.yml

 

반응형

'AWS' 카테고리의 다른 글

aws multi account create iam role python (boto3)  (0) 2024.09.02
aws s3 bucket lifecycle set  (0) 2023.07.12
IDC -> aws 실시간 sync (lsync)  (0) 2022.03.16
AWS Root - Yubikey  (0) 2022.01.30
multi account EFS mount 이중화 방법  (0) 2021.11.16