These are the docs for the Metabase master branch. Some features documented here may not yet be available in the latest release. Check out the docs for the latest version, Metabase v0.51.
Encrypting your database connection
Metabase stores connection information for the various databases you add in the Metabase application database. To prevent bad actors from being able to access these details if they were to gain access to the application DB, Metabase can automatically encrypt them with AES256 + SHA512 when they are saved, and decrypt them on-the-fly whenever they are needed.
Creating an encryption key
- Generate a secret key that is at least 16 characters (longer is even better!). We recommend using a secure random key generator, such as
openssl
.You cannot decrypt connection details without this key. If you lose (or change) the key, you’ll have to reset all of the connection details that have been encrypted with that key in the Admin Panel.
- Set your secret key as the environment variable
MB_ENCRYPTION_SECRET_KEY
. On self-hosted Pro and Enterprise plans plans, you can set also set this using the config file.
Example commands for creating and adding a key
- You can use
openssl
to generate a cryptographically-secure, randomly-generated 32-character key.openssl rand -base64 32
- Copy the key to your clipboard. It should look something like this:
IYqrSi5QDthvFWe4/WdAxhnra5DZC3RKx3ZSrOJDKsM=
- Set the key as an environment variable and start Metabase as usual.
MB_ENCRYPTION_SECRET_KEY="IYqrSi5QDthvFWe4/WdAxhnra5DZC3RKx3ZSrOJDKsM=" java --add-opens java.base/java.nio=ALL-UNNAMED -jar metabase.jar
Once you set the MB_ENCRYPTION_SECRET_KEY
value, Metabase will automatically encrypt and store the connection details for each new database that you add. To encrypt existing connections, see the next section.
Some versions of Linux interpret single-quotes (
'
) and double-quotes ("
) differently for environment variable values. If you upgrade to a newer version of Linux, and the key originally used single-quotes, you might need to wrap the key in double-quotes, so that the single-quotes are interpreted literally. For example,MB_ENCRYPTION_SECRET_KEY='IYq...sM='
would becomeMB_ENCRYPTION_SECRET_KEY="'IYq...sM='"
Encrypting an existing connection
If you added databases before setting the MB_ENCRYPTION_SECRET_KEY
value, you can encrypt the connection details by going to each one of those databases in Admin settings > Databases and clicking on the Save button. Existing databases with unencrypted details will continue to work normally.
Rotating an encryption key
- We recommend that you backup your data before doing a key rotation.
- Stop running your Metabase app.
- Run the CLI command
rotate-encryption-key
.- Set the current encryption key as
MB_ENCRYPTION_SECRET_KEY
. - Set the new encryption key as a parameter.
- Set the current encryption key as
Example command for rotating a key
MB_ENCRYPTION_SECRET_KEY=your-current-key java --add-opens java.base/java.nio=ALL-UNNAMED -jar metabase.jar rotate-encryption-key new-key
Disabling an encryption key
To disable an encryption key, follow the steps to rotate an encryption key, but use an empty string (""
) as the new key.
Example command for disabling a key
MB_ENCRYPTION_SECRET_KEY="your-current-key" java --add-opens java.base/java.nio=ALL-UNNAMED -jar metabase.jar rotate-encryption-key ""
Read docs for other versions of Metabase.