Bbolt to Postgres Migration
Bindplane BBolt store has been deprecated since February 2025 and will be removed in January 2026. Follow these steps to migrate to Postgres as soon as possible.
Last updated
Was this helpful?
Was this helpful?
sudo systemctl stop bindplanesudo cp /var/lib/bindplane/storage/bindplane.db ~/bindplane.db.bakstore:
type: postgres
postgres:
host: localhost
port: "5432"
database: bindplane
username: bindplane
password: your_passwordsudo bindplane migrate-store --config /etc/bindplane/config.yamlPerforming migration from boltstore to postgres
Checking if database is empty... Done
Seeding eula versions... Done
Migrating eulas... Done
Migrating accounts... Done
Migrating users... Done
Migrating resource store... Done
Migrating library resources... Done
Migrating configs... Done
Migrating agent resources... Done
Migrating api keys... Done
Migrating agents... Done
Successfully performed database migrationsudo systemctl start bindplane
sudo systemctl status bindplane