Free Report! Gartner® Hype Cycle™ for Monitoring and Observability.Read more

PostgreSQL

How to backup and recover BindPlane OP when using PostgreSQL

When BindPlane OP is configured to use PostgreSQL as the storage backend, all data is stored in a database on the PostgreSQL system.

Tooling

The PostgreSQL ecosystem is rich with backup tools. This guide will focus on the simplest approach, pgdump. You can use your favorite backup tooling as an alternative to pgdump.

Prerequisites

  • Command line access to the PostgreSQL database

Backup

Using the pg_dump command, export the database named bindplane to a file in the working directory.

bash
1pg_dump --file bindplane-$(date '+%Y-%m-%d_%H:%M:%S').pgsql --dbname bindplane

Once finished, a file with the date will exist in the working directory. For example, bindplane-2023-08-03_15:16:47.pgsql.

It is recommended that the exported database files be moved to a remote system, such as a backup server or a secure object storage service like Google Cloud Storage or Amazon S3.

Restore

To restore backup of the PostgreSQL database, use the following process:

  1. Stop the server: sudo systemctl stop bindplane
  2. Ensure the target database exists
  3. Use psql to restore the backup: psql -d bindplane < bindplane-2023-08-03_15:16:47.pgsql
  4. Start BindPlane: sudo systemctl start bindplane