The two main reasons a Red Hat Ansible Automation Platform (AAP) admin needs to back up their AAP environment are:
- To save a copy of the data from your AAP environment, so you can restore it if needed.
- To use the backup to restore the environment into a different set of servers if you're creating a new AAP cluster or preparing for an upgrade.
This article explains how to back up and restore AAP. It's applicable for either of these scenarios, but I'll provide specific guidance for scenario #2 (AAP migration or upgrade) in a follow-up article. In all cases, the recommended and safest process is to always use the same versions of PostgreSQL and AAP to back up and restore the environment.
[ Need more on Ansible? Take a no-cost technical overview course from Red Hat. Ansible essentials: Simplicity in automation technical overview. ]
Make a backup
You make a backup using the same setup.sh
script that you use to install Ansible Automation Platform. It also makes sense to use the same inventory file that you used on the installation.
You just need to pass an additional flag -b
when invoking the setup.sh
command.
Here is one example running as the root user (the script requires root access):
# ./setup.sh -b
It's similar if you need to run it using sudo
:
$ sudo ./setup.sh -b
Here is a more elaborate scenario:
$ ./setup.sh -b -- -b -u admin -e@vault.yml --ask-vault-password
In the latter command:
- The initial part,
./setup.sh -b
, runs the backup (as in the other examples). - The double dashes
--
are a way to pass arguments to the internal playbook thatsetup.sh
calls.- The second
-b
parameter tells Ansible to "become" an elevated user, which by default is root. -u admin
informs the playbook to connect as the user "admin" (which in my environment is allowed to sudo to root without a password).-e@vault.yml
reads variables from a file encrypted with theansible-vault
command because I don't want passwords defined in clear text inside my inventory file.--ask-vault-password
tells Ansible to prompt me for the password to decryptvault.yml
when I invoke the script.
- The second
These are different ways to do the same thing, depending on how strict your environment is. In the end, you expect to see something like this:
PLAY RECAP *********************************************************************
aapah.example.com : ok=41 changed=12 unreachable=0 failed=0 skipped=87 rescued=0 ignored=0
aapcontrol.example.com : ok=82 changed=44 unreachable=0 failed=0 skipped=93 rescued=0 ignored=0
localhost : ok=2 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0

Make sure that you have the mandatory -b
(for backups) parameter in your execution, otherwise setup.sh
just installs or reinstalls AAP.
[ Write your first Ansible playbook in this hands-on interactive lab. ]
Check the result
You should get something similar to this if your backup succeeds:
$ ll *backup*
-rw-------. 1 root root 4.3G Mar 4 17:41 automation-platform-backup-2023-03-04-17:34:16.tar.gz
lrwxrwxrwx. 1 root root 132 Mar 4 17:41 automation-platform-backup-latest.tar.gz -> /home/rnozaki/tools/ansible/ansible-automation-platform-setup-bundle-2.3-1.4/./automation-platform-backup-2023-03-04-17:34:16.tar.gz
-rw-r-----. 1 root root 439K Mar 4 17:42 backup-2023-03-04-17:34:13.log

The long file name ending with tar.gz is the backup result, with a time stamp showing when it was taken.
The command also creates a link called automation-platform-backup-latest.tar.gz
, which (as the name implies) always points to the latest backup.
Restore a backup
If you are restoring the backup to the same system where it was made, you just need to run the setup.sh
script again, but this time pass the argument -r
instead of -b
.
If you want to restore from the latest backup, the command automatically uses the "latest" file and points to the link I mentioned before.
If you need to restore from an older backup, you have two options:
- Point the link
automation-platform-backup-latest.tar.gz
to the file you really want, and then runsetup.sh -r
. This makes the selected file the official "latest" one:# unlink automation-platform-backup-latest.tar.gz # ln -s <your-other-backup-file> automation-platform-backup-latest.tar.gz # ./setup.sh -r
- Pass an alternative backup file to restore, for one-time use:
# ./setup.sh -e 'restore_backup_file=/path/to/nondefault/backup.tar.gz' -r
These examples run the command as root. For brevity, I'm not showing all the other variations like I did for backup execution.
After the restoration is done, you may need to restart the AAP services on your controller(s) before you can log in again:
# automation-controller-service start # Do this as root
[ Download now: A system administrator's guide to IT automation. ]
Final thoughts
Some additional ideas to consider:
- To perform a simple restore test on the same cluster, you can create a dummy Organization or Job Template in AAP right after you make the backup, and verify when you restore that those test objects are gone. You could also delete something (unimportant) before restoring to verify that it was recovered.
- You can restore your backup to another AAP cluster; this is one of the principles I will cover in an upcoming AAP upgrade and migration article. You could also do this to restore your backed-up AAP to a clone (a lab, for instance). The main requirements are:
- The target AAP you are restoring to must be the same version as the one used for the backup. That includes the PostgreSQL version. This is because to be able to restore a database, the same database structure and the features handled by
setup.sh
and the playbook behind it must exist. - If you are restoring to a different cluster, you need a separate inventory. Pass it as an additional parameter to the script, if you are running from the same directory where the backup was taken:
# ./setup.sh -r -i <inventory file>
- Instead, if you just copy the backup file (the tar.gz) to another server or directory with the same Ansible installer and have the other inventory file defined there, you don't need to specify it separately.
- The target AAP you are restoring to must be the same version as the one used for the backup. That includes the PostgreSQL version. This is because to be able to restore a database, the same database structure and the features handled by
- AAP has different components and containers. To handle all the new elements, pay close attention to the available disk space required for the controller, automation hub, and database servers.
You can read more about backup and restore in the documentation.
I leave you with one final thought based on my experience: a backup doesn't have much value unless it can be restored.
About the author
Roberto Nozaki (RHCSA/RHCE/RHCA) is an Automation Principal Consultant at Red Hat Canada where he specializes in IT automation with Ansible. He has experience in the financial, retail, and telecommunications sectors, having performed different roles in his career, from programming in mainframe environments to delivering IBM/Tivoli and Netcool products as a pre-sales and post-sales consultant.
Roberto has been a computer and software programming enthusiast for over 35 years. He is currently interested in hacking what he considers to be the ultimate hardware and software: our bodies and our minds.
Roberto lives in Toronto, and when he is not studying and working with Linux and Ansible, he likes to meditate, play the electric guitar, and research neuroscience, altered states of consciousness, biohacking, and spirituality.
Browse by channel
Automation
The latest on IT automation for tech, teams, and environments
Artificial intelligence
Updates on the platforms that free customers to run AI workloads anywhere
Open hybrid cloud
Explore how we build a more flexible future with hybrid cloud
Security
The latest on how we reduce risks across environments and technologies
Edge computing
Updates on the platforms that simplify operations at the edge
Infrastructure
The latest on the world’s leading enterprise Linux platform
Applications
Inside our solutions to the toughest application challenges
Original shows
Entertaining stories from the makers and leaders in enterprise tech
Products
- Red Hat Enterprise Linux
- Red Hat OpenShift
- Red Hat Ansible Automation Platform
- Cloud services
- See all products
Tools
- Training and certification
- My account
- Customer support
- Developer resources
- Find a partner
- Red Hat Ecosystem Catalog
- Red Hat value calculator
- Documentation
Try, buy, & sell
Communicate
About Red Hat
We’re the world’s leading provider of enterprise open source solutions—including Linux, cloud, container, and Kubernetes. We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.
Select a language
Red Hat legal and privacy links
- About Red Hat
- Jobs
- Events
- Locations
- Contact Red Hat
- Red Hat Blog
- Inclusion at Red Hat
- Cool Stuff Store
- Red Hat Summit