Skip to content

Installing extensions

Extensions require a separate package install before you can enable them with CREATE EXTENSION. Depending on the extension, you may need to install the package on all hosts or only on the coordinator. See the individual extension's reference page for details.

Once you've installed the package, activate the extension in each target database:

bash
psql -d <database_name> -c 'CREATE EXTENSION <extension_name>;'