Posts

Showing posts from March, 2020

KB: Deploying AWX on Centos 7

Image
Deploying AWX on Centos * 7 Note below script(s) have been pulled together from various sites to ensure the smooth deployment of AWX on a centos OS. You may use the awxvertag variable value to select which release version you want to deploy. Note this is not a RPM deployment. Also, this works as of 03-2020, in case anything changes the script may require additional updates. For latest release version you may visit awx github repo:  https://github.com/ansible/awx/releases Install script. Create installawx.sh file in /tmp and paste the script below, chmod 0777 the sh file and execute the sh file. ----------------- #!/bin/bash #Enter the AWX Version here from github.... ############################ awxvertag=9.2.0 ############################ yum update -y yum install -y ansible ansible --version #Required steps to setup AWX ############################### #Install Enterprise Packages yum install -y epel-release yum-utils #Apply Firewall Settings #NOTE: Firew...