.. _barman-cloud: Barman for the cloud ==================== Barman offers two primary methods for backing up Postgres servers to the cloud: * *Creating disk volume snapshots as base backups.* You have two options to work with snapshots: 1. You will need to setup a barman server to store the barman metadata and WAL files, while your backup will be created as disk volume snapshots in the cloud. This is an integrated feature of Barman. If you choose this approach, please consult the :ref:`cloud snapshots backups ` section for details. 2. Interact and manage backups directly with the command line utility provided by the ``barman-cli-cloud`` package without the need for a barman server. The barman metadata and WAL files will be stored in a cloud object storage, while your backup will be created as disk volume snapshots in the cloud. * *Creating and transfering base backups to a cloud object storage.* This method is similar to the second option of snapshots, but the base backup is stored in an object storage alongside the WAL files and backup metadata. This section of the documentation is focused in the ``barman-cloud-*`` commands that can be used to manage and interact with backups without the need of a dedicated barman server. To start working with it, you will need to install the ``barman-cli-cloud`` package on the same machine as your Postgres server. Understanding these options will help you select the right approach for your cloud backup and recovery needs, ensuring you leverage Barman's full potential. .. _barman-cloud-barman-cli-cloud: barman-cli-cloud ---------------- The ``barman-cli-cloud`` package provides commands for managing cloud backups, both in object storage and as disk volume snapshots, without requiring a Barman server. With this utility, you can: * Create and manage snapshot backups directly. * Create and transfer backups to cloud object storage. ``barman-cli-cloud`` extends beyond Barman's native capabilities, offering commands for handling backups in cloud storage and disk volumes independently. Its operations may differ from Barman's integrated features. .. note:: Barman supports AWS S3 (and S3 compatible object stores), Azure Blob Storage and Google Cloud Storage. .. _barman-cloud-installation: Installation ------------ To back up Postgres servers directly to a cloud provider, you need to install the Barman client utility for the cloud on those servers. Keep in mind that the installation process varies based on the distribution you are using. Refer to the :ref:`installation ` section for the installation process, and make sure to note the important information for each distribution. .. _barman-cloud-commands-reference: Commands Reference ------------------ You have several commands available to manage backup and recovery in the cloud using this utility. The exit statuses for them are ``SUCCESS`` (0), ``FAILURE`` (1), ``FAILED CONNECTION`` (2) and ``INPUT_ERROR`` (3). Any other non-zero is ``FAILURE``. .. include:: commands/barman_cloud/backup.inc.rst .. include:: commands/barman_cloud/backup_delete.inc.rst .. include:: commands/barman_cloud/backup_show.inc.rst .. include:: commands/barman_cloud/backup_list.inc.rst .. include:: commands/barman_cloud/backup_keep.inc.rst .. include:: commands/barman_cloud/check_wal_archive.inc.rst .. include:: commands/barman_cloud/restore.inc.rst .. include:: commands/barman_cloud/wal_archive.inc.rst .. include:: commands/barman_cloud/wal_restore.inc.rst