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 Rajesh Kumar, a DevOps, SRE, DevSecOps, Cloud, and Platform Engineering expert passionate about sharing practical knowledge, real-world experiences, and industry best practices. I have worked at Cotocus and regularly write about technology, travel, investing, health, product reviews, and digital marketing through my various platforms. I publish technical articles at DevOps School, travel stories at Holiday Landmark, stock market insights at Stocks Mantra, health and fitness guidance at My Medic Plus, product reviews at TrueReviewNow, and SEO and digital marketing strategies at Wizbrand.

Related Posts

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

Introduction Construction Management Software (CMS) has become indispensable in 2026 for efficiently handling various aspects of construction projects, ranging from budgeting, scheduling, resource allocation, project tracking, to…

Read More

Top 10 Personal Finance Software Tools in 2026: Features, Pros, Cons & Comparison

Introduction In the fast-paced world of 2026, managing personal finances efficiently is more crucial than ever. With rising inflation, economic uncertainties, and the complexity of multiple financial…

Read More

Top 10 AI Pricing Optimization Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, AI pricing optimization tools have become indispensable for businesses navigating the complexities of dynamic markets. These tools leverage artificial intelligence, machine learning, and real-time…

Read More

Top 10 On-premise Backup Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, on-premise backup tools are still essential for businesses that need complete control over their data security and disaster recovery plans. Unlike cloud-based solutions, on-premise…

Read More

Top 10 Server Backup Tools in 2026: Features, Pros, Cons & Comparison

Introduction Server backup tools are essential for businesses in 2026 to ensure the safety, security, and reliability of their data. With the growing threats of cyberattacks, hardware…

Read More

Top 10 Backup & Recovery Tools in 2026: Features, Pros, Cons & Comparison

Introduction In todayโ€™s digital world, data is the backbone of virtually every business operation. As the amount of critical data grows, so does the need for robust…

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