Install and Use the Liquibase Ansible Role
Last updated: September 2, 2025
Use the official Liquibase Ansible role to install Liquibase on your target servers. This role handles downloading, verifying, and placing Liquibase in your desired installation path.
Note: Starting with Liquibase version 4.32.0, we will no longer update this package manager with our latest software download packages.
Before you begin
Confirm that Java is installed. If you use the Liquibase Installer, Java is included automatically.
Procedure
Install the Role
Install the Liquibase role from Ansible Galaxy:
ansible-galaxy role install liquibase.liquibase
Step up your inventory.
Create an inventory file, such as inventory.ini
, and list your target hosts.
[liquibase_hosts]
10.0.0.1
10.0.0.2
10.0.0.3
Create a Playbook
Create a playbook file, such as playbook.yml
, that uses the Liquibase role
- name: Install Liquibase
hosts: liquibase_hosts
become: 'yes'
roles:
- liquibase.liquibase
Run the Playbook.
Use the ansible-playbook
command to apply the role.
ansible-playbook -i inventory.ini playbook.yml
Verify Installation
After running the playbook, SSH into your target servers and run:
liquibase --version