Skip to content

Instantly share code, notes, and snippets.

@LinuxlinkedBD
Created June 21, 2021 11:35
Show Gist options
  • Save LinuxlinkedBD/394f3c2cd06ab6b4a713fca8719a83b1 to your computer and use it in GitHub Desktop.
Save LinuxlinkedBD/394f3c2cd06ab6b4a713fca8719a83b1 to your computer and use it in GitHub Desktop.
How to install Ansible AWX on ubuntu
If you need complete AWX ansible setup, ping me on below contacts:
Telegram: linuxlinked
email: linuxlinked@gmail.com
WhatsApp: +8801720903155
Skype:live:.cid.c0dc316b9d727d5e
YouTube: https://youtu.be/LN5aL3lQMEM
########################################################################################################################################
#!/bin/bash
sudo apt-get update
sudo apt update
sudo apt-get install software-properties-common
sudo apt update
sudo add-apt-repository ppa:git-core/ppa
sudo apt update
sudo apt -y install git
sudo apt update
sudo apt upgrade -y
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu (lsb_release -cs) stable"
sudo apt update
sudo apt install -y docker-ce docker-ce-cli containerd.io
sudo systemctl restart docker
docker version
ansible-playbook -i inventory install.yml
#now visit http://server-ip-address
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment