Uninstalling EDB OTEL
To uninstall edb_otel:
Drop the edb_otel extension:
# Connect to your database using psql psql -d postgres -U enterprisedb # Drop the extension DROP EXTENSION edb_otel;
Edit the
postgresql.conf
file on the server you want to remove the extension, deleting theshared_preload_libraries
parameter line.In Linux, remove:
shared_preload_libraries = `$libdir/edb_otel`
Restart the Postgres database server to apply the changes.
Could this page be better? Report a problem or suggest an addition!