AWX can be deployed in multiple different ways; however, the most convenient way is to deploy it using containers. In this recipe, we will outline how to install AWS using Docker containers, in order to start to interact with the AWX interface.
Installing AWX
Getting ready
Prepare a fresh Ubuntu 16.04 machine, on which we will deploy AWX – it must have internet connectivity.
How to do it...
- Ensure Python 3 is installed on the Ubuntu Linux machine and that pip is installed and upgraded to the latest version:
$ python –version
Python 3.5.2
$ sudo apt-get install...