Find the Best Cosmetic Hospitals

Explore trusted cosmetic hospitals and make a confident choice for your transformation.

โ€œInvest in yourself โ€” your confidence is always worth it.โ€

Explore Cosmetic Hospitals

Start your journey today โ€” compare options in one place.

Ansible: Ansible Automation Platform (AAP) 2.5+ Installation & Configuration

How to download?

  • https://developers.redhat.com/products/ansible/download
  • TIME – 1 hour. Size – Approax 4G

Hereโ€™s a detailed and up-to-date conclusion for installing the latest Ansible Automation Platform (AAP) 2.5+ with the RPM/bundle installerโ€”including the minimum requirements and whatโ€™s possible (and not) for learning/lab setups as of 2024โ€“2026.


Minimal System Requirements for AAP 2.5+ Setup-Bundle

Key Points

  • The RPM/bundle installer for AAP 2.4/2.5+ is now designed for enterprise, multi-node deployments.
  • You cannot run all major AAP components (Controller, Execution Node, Automation Hub, Gateway, etc.) on a single VM.
  • For learning or lab: You will need at least three VMs (can be small), each with its own hostname or IP, to install AAP using the bundle.
  • If you absolutely need an all-in-one lab, use AWX (upstream) or the AAP Operator on OpenShift instead.

1. Minimal Topology Required for AAP 2.5+ Bundle Install

ComponentHost RequirementNotes
Controller1 VM(Required)
Automation Hub1 VM(Required)
Automation Gateway1 VM(Required in 2.5+)
Execution NodeCan share with Gateway(Optional, but often separated in prod)
DatabaseCan share with others(Default: installer-managed PostgreSQL)
  • Total: 3 separate VMs/hosts, minimum, for a “minimal” supported learning deployment.

2. System Requirements (Per VM)

  • OS: RHEL 8.6+ or RHEL 9.2+ (recommended/supported). Rocky/AlmaLinux for lab, with possible tweaks.
  • vCPU: 2+ (4 preferred for Controller/Hub)
  • RAM: 4 GB minimum (8 GB recommended)
  • Disk: 40 GB+ (Hub needs more if storing lots of collections/content)
  • Network: All VMs must reach each other over the network.

3. Minimal Example Inventory (Three VMs)

Suppose your hosts are:

  • Controller: controller.lab.local
  • Hub: hub.lab.local
  • Gateway: gateway.lab.local


[automationcontroller]
controller.lab.local

[automationhub]
hub.lab.local

[automationgateway]
gateway.lab.local

[database]
controller.lab.local

[all:vars]
admin_password=MyStrongAdminPass123!
pg_host=controller.lab.local
pg_port=5432
pg_database=awx
pg_username=awx
pg_password=MyStrongDBPass123!

automationhub_admin_password=MyStrongHubPass123!
automationhub_pg_host=controller.lab.local
automationhub_pg_port=5432
automationhub_pg_database=automationhub
automationhub_pg_username=automationhub
automationhub_pg_password=MyStrongHubDBPass123!

automationgateway_admin_password=MyStrongGatewayPass123!
automationgateway_pg_host=controller.lab.local
automationgateway_pg_port=5432
automationgateway_pg_database=gateway
automationgateway_pg_username=gateway
automationgateway_pg_password=MyStrongGatewayDBPass123!

  • You can point all PG (pg_host) to one node for simplicity.

4. What is NOT Allowed (as of AAP 2.5+)?

  • No all-in-one (everything on one VM) installs using the RPM/bundle installer.
  • No multiple components with the same hostname/IP in the inventory.

5. If You Absolutely Want All-in-One for Learning:

  • Use AWX (open source, Docker/Podman/Kubernetes, easy to run for demo/lab)
  • Or use Red Hat AAP Operator in a single-node OpenShift/OKD/minikube cluster.

6. Download/Install Steps Overview

  1. Prepare 3 VMs with RHEL 8/9 (same major version).
  2. Set static hostnames and ensure they can resolve each other (via DNS or /etc/hosts).
  3. Prepare your inventory file as above.
  4. Unpack the setup bundle and run: ./setup.sh
  5. Access the web UI on your Controller VM after installation.

7. References and Best Practices


Conclusion Table

ScenarioSupported by RPM Bundle?Recommended For Labs?Notes
Single node/VM all-in-oneโŒ NoโŒ Use AWX/OperatorNot supported by AAP 2.5+ bundle
3-node minimal clusterโœ… Yesโœ… Yes (labs, PoC)Each component on separate VM/hostname
Full prod clusterโœ… Yesโœ…For enterprise/prod use
AWX all-in-oneN/A (not AAP)โœ… Yes (labs)Open source only
AAP Operator (OpenShift)โœ… Yesโœ… Yes (labs/prod)Supported with Operator

In Short:

  • For minimal AAP 2.5+ bundle install:
    You need three VMs/hostsโ€”Controller, Hub, and Gatewayโ€”each with a unique hostname/IP.
  • All-in-one on one VM is NOT supported (use AWX or Operator for that).
  • Each VM: RHEL 8.6+/9.2+, 2+ vCPU, 4+ GB RAM, 40+ GB disk, network reachable.
  • Best for labs and learning:
    Smallest supported cluster is 3 VMs. Use local DNS or /etc/hosts for name resolution.


You Only Run setup.sh on ONE Machine (the โ€œInstaller Nodeโ€)

  • You do NOT run setup.sh on all 3 VMs.
  • You run it once, from a โ€œcontrolโ€ or โ€œinstallerโ€ machine (usually your controller node, but it can be any of the 3, or even a 4th admin node).
  • The installer will SSH to all the other nodes listed in your inventory and perform the setup automatically on them.
  • All nodes must be accessible via SSH from the installer node (usually as root or a sudo user).

Typical Workflow

  1. Choose one node to act as your installer nodeโ€”usually the Controller (controller.lab.local).
  2. Place the setup bundle and the completed inventory file on this machine.
  3. Ensure you can SSH (passwordless, with key) from this machine to all others as root or a user with passwordless sudo.
    • e.g., ssh root@hub.lab.local
    • e.g., ssh root@gateway.lab.local
  4. From the installer node (e.g., controller.lab.local), run: ./setup.sh
  5. The installer connects to all hosts listed in the inventory (including itself), installs packages, configures the software, and sets up the cluster.

You Need to Prepare Each Node:

  • RHEL 8.6+ or 9.2+ installed, fully updated
  • Hostname set and resolvable by the others (use /etc/hosts or DNS)
  • SSH server running
  • The user running setup.sh must be able to SSH to all nodes as root (or as a user with passwordless sudo)
  • Optional: Set up ssh-copy-id to distribute your SSH key

Summary Table

NodeNeeds Setup Bundle?Run setup.sh?Needs to Accept SSH?Needs Hostname?
controllerYes (installer)โœ… Yesโœ… YesYes
hubNoโŒ Noโœ… YesYes
gatewayNoโŒ Noโœ… YesYes

In Short:

  • Only run setup.sh on one node (commonly the controller)
  • That machine must be able to SSH to all others using the user you run the installer as
  • All other setup is done by the installer over SSH!

Find Trusted Cardiac Hospitals

Compare heart hospitals by city and services โ€” all in one place.

Explore Hospitals
Iโ€™m a DevOps/SRE/DevSecOps/Cloud Expert passionate about sharing knowledge and experiences. I have worked at <a href="https://www.cotocus.com/">Cotocus</a>. I share tech blog at <a href="https://www.devopsschool.com/">DevOps School</a>, travel stories at <a href="https://www.holidaylandmark.com/">Holiday Landmark</a>, stock market tips at <a href="https://www.stocksmantra.in/">Stocks Mantra</a>, health and fitness guidance at <a href="https://www.mymedicplus.com/">My Medic Plus</a>, product reviews at <a href="https://www.truereviewnow.com/">TrueReviewNow</a> , and SEO strategies at <a href="https://www.wizbrand.com/">Wizbrand.</a> Do you want to learn <a href="https://www.quantumuting.com/">Quantum Computing</a>? <strong>Please find my social handles as below;</strong> <a href="https://www.rajeshkumar.xyz/">Rajesh Kumar Personal Website</a> <a href="https://www.youtube.com/TheDevOpsSchool">Rajesh Kumar at YOUTUBE</a> <a href="https://www.instagram.com/rajeshkumarin">Rajesh Kumar at INSTAGRAM</a> <a href="https://x.com/RajeshKumarIn">Rajesh Kumar at X</a> <a href="https://www.facebook.com/RajeshKumarLog">Rajesh Kumar at FACEBOOK</a> <a href="https://www.linkedin.com/in/rajeshkumarin/">Rajesh Kumar at LINKEDIN</a> <a href="https://www.wizbrand.com/rajeshkumar">Rajesh Kumar at WIZBRAND</a> <a href="https://www.rajeshkumar.xyz/dailylogs">Rajesh Kumar DailyLogs</a>

Related Posts

Best Tools for Software Composition Analysis (SCA)

Hereโ€™s a clear and professional explanation of the three related concepts you asked about โ€” all of which are critical parts of secure software development, especially in…

Read More

Top 10 AI Code Review Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, AI code review tools have become essential for developers aiming to enhance code quality, streamline workflows, and accelerate software delivery. These tools leverage advanced…

Read More

Top 10 Expense Management Tools in 2026: Features, Pros, Cons & Comparison

Introduction Expense management tools are critical for businesses of all sizes in 2026 as they help streamline financial processes, improve budgeting, ensure compliance, and enhance financial visibility….

Read More

Top 10 Web Application Firewall (WAF) Tools in 2026: Features, Pros, Cons & Comparison

Introduction In the rapidly evolving landscape of cybersecurity, Web Application Firewalls (WAFs) have become a critical component in defending web applications from malicious attacks such as SQL…

Read More

Top 10 Endpoint Management Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, businesses of all sizes are increasingly reliant on a variety of devicesโ€”laptops, desktops, mobile devices, and other endpointsโ€”that connect to their networks. With the…

Read More

Top 11 Best Apps for Education

Are you tired of traditional learning methods? Do you want to explore new ways of learning? Then you have come to the right place! In this article,…

Read More
Subscribe
Notify of
guest
0 Comments
Newest
Oldest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x