AnsiblePilot ā Master Ansible Automation
AnsiblePilot is the leading resource for learning Ansible automation, DevOps, and infrastructure as code. Browse over 1,400 tutorials covering Ansible modules, playbooks, roles, collections, and real-world examples. Whether you are a beginner or an experienced engineer, our step-by-step guides help you automate Linux, Windows, cloud, containers, and network infrastructure.
Popular Topics
About Luca Berton
Luca Berton is an Ansible automation expert, author of 8 Ansible books published by Apress and Leanpub including "Ansible for VMware by Examples" and "Ansible for Kubernetes by Example", and creator of the Ansible Pilot YouTube channel. He shares practical automation knowledge through tutorials, books, and video courses to help IT professionals and DevOps engineers master infrastructure automation.
What is Ansible AWX? Open-Source Automation Platform Guide ā Video Tutorial
What is Ansible AWX? Understand the open-source automation platform. Compare AWX vs AAP, explore features, architecture, and use cases for enterprise.
What You'll Learn
- What is Ansible AWX?
- š Ansible AWX vs. Ansible Automation Platform
- ā
Key Features of AWX:
- š How to Install Ansible AWX
- **Step 1: Install Dependencies**
- **Step 2: Clone the AWX Repository**
- **Step 3: Deploy AWX**
- š Useful Links
- šÆ Conclusion
- AWX Overview
Full Tutorial Content
What is Ansible AWX?
**AWX** is the **Open Source upstream project** of the **Ansible Automation Controller**, which is part of the **Ansible Automation Platform** (formerly known as **Ansible Tower**).
AWX provides a **modern web UI and API** to help teams manage **Ansible Playbooks, Inventories, Vaults, and Credentials** in an organized way.
If you're interested in learning about the latest **features** before they reach the **Ansible Automation Platform**, you should look at **AWX**. However, keep in mind that **AWX has a different release cycle and support model**.
š **I'm Luca Berton, and welcome to today's episode of Ansible Pilot.**
---
š Ansible AWX vs. Ansible Automation Platform
Here are the key differences between **Ansible AWX** and the **Ansible Automation Platform**:
- **Apache License 2.0** (Open-source)
- **AWX is community-supported**, whereas **Ansible Automation Platform is supported by Red Hat**
- **New builds approximately every two weeks** (AWX follows a faster release cycle)
ā
Key Features of AWX:
- A **modern web-based UI** for Ansible
- **Role-based access control (RBAC)** for better security
- **Job scheduling and execution tracking**
- **REST API support** for automation
- **Dynamic inventories** from cloud providers (AWS, GCP, Azure)
- **Logging and monitoring tools**
---
š How to Install Ansible AWX
**Step 1: Install Dependencies**
Ensure your system has **Docker, Kubernetes, or OpenShift**, and install **Ansible**:
```bash
sudo yum install -y epel-release
sudo yum install -y git ansible
```
**Step 2: Clone the AWX Repository**
```bash
git clone https://github.com/ansible/awx.git
cd awx
```
**Step 3: Deploy AWX**
Run the **AWX Installer** with Ansible:
```bash
ansible-playbook -i inventory install.yml
```
Once installation is complete, access **AWX Web UI** via:
š `http://localhost:80`
Login with **default credentials**:
š **Username:** `admin`
š **Password:** `password`
---
š Useful Links
- š [Red Hat Ansible AWX Project](https://forum.ansible.com//awx-project)
- š [AWX GitHub Repository](https://github.com/ansible/awx)
- š [AWX Official Documentation](https://docs.ansible.com/ansible/latest/user_guide/)
---
šÆ Conclusion
Now you **understand what Ansible AWX is**, how it compares with **Ansible Automation Platform**, and how it can **help automate and manage Ansible Playbooks** at scale.
š” **Next Steps**:
- **Try AWX** in your environment
- **Explore the Web UI and API**
- **Start scheduling and managing Playbooks efficiently**
AWX Overview
AWX is the **free, open-source upstream project** for Red Hat Ansible Automation Platform (formerly Ansible Tower). It provides:
- **Web UI** for managing Ansible playbooks
- **REST API** for programmatic access
- **Role-Based Access Control (RBAC)**
- **Job scheduling and templating**
- **Inventory management** (static and dynamic)
- **Credential management** (encrypted storage)
- **Notifications** (Slack, e
About This Tutorial
- Author: Luca Berton
- Difficulty: Beginner
- Read time: 9 min
- Category: installation
Read the full written article: What is Ansible AWX? Open-Source Automation Platform Guide
Related Video Tutorials
- Build Ansible AWX in Docker Containers Easily ā Learn to build and run Ansible AWX in Docker containers. Follow steps to set up AWX for local testing with Docker, including building base and receptor images.
- Create Ansible AWX Superuser in Docker: Admin Account Setup (Guide) ā How to create an AWX superuser admin account in Docker containers. Reset passwords, manage users, and troubleshoot AWX authentication with step-by-step.
- Install Ansible AWX Operator for Kubernetes (K8s) and OpenShift (OCP) - Ansible AWX ā How to deploy the latest Ansible AWX Operator in your local Red Hat OpenShift Local (formerly Red Hat CodeReady Containers), fully compatible with Kubernetes.
- Run and Stop AWX in Docker Containers: Start, Stop & Manage (Guide) ā How to run and stop Ansible AWX in Docker containers. Start, stop, restart AWX services, check logs, and troubleshoot common Docker deployment issues.
- Ansible uri Module: REST API Requests (GET, POST, PUT, DELETE) ā How to interact with REST APIs using Ansible uri module. Send GET, POST, PUT, DELETE requests, handle authentication, parse JSON responses with examples.
- Ansible URI Module: REST API Authentication & HTTP Requests Guide ā How to interact with REST APIs using Ansible uri module. Token-based authentication, GET/POST requests, headers, JSON body.