Enabling TDE on an existing EDB Postgres Advanced Server cluster
Create an EDB Postgres Advanced Server cluster with TDE enabled and use pg_upgrade to transfer data from the existing source cluster to the new encrypted cluster.
- Prepare your upgrade by performing a backup of the existing instance.
- Create a new database server:
- Create an empty directory for the new server and ensure enterprisedb owns it.
- Set the environment variables to export the
wrap
andunwrap
commands for encryption. - Initialize a server with encryption enabled.
- Change the default port so the new server is available at another port.
- Start the database server.
- Connect to the database server and ensure it's functioning.
- Upgrade to the encrypted server:
- Stop both the source and the new server.
- Use pg_upgrade with the
--copy-by-block
option to copy data from the source server to the new server. Specify the source and target bin and data directories. - Start the new encrypted database server.
- Connect to the encrypted database server and ensure the data was transferred.
- Clean up and delete the source server:
- Clean up the database and its statistics.
- Remove the source EDB Postgres Advanced Server cluster with the script provided by pg_upgrade.
Worked example
This example enables TDE on EDB Postgres Advanced Server version 16 running on an Ubuntu 22.04 machine.
A similar workflow applies to other versions of EDB Postgres Advanced Server and EDB Postgres Extended Server. The location of the bin and config directories differs depending on your operating system and the Postgres version.
Preparing your upgrade
Use pg_dumpall, pgBackRest, or Barman to create a backup of your unencrypted source server.
Creating an encrypted server
Create an empty directory for the new server. In this example, the directory name is
TDE
.