Uninstalling EDB OTEL

To uninstall edb_otel:

  1. Drop the edb_otel extension:

    # Connect to your database using psql
    psql -d postgres -U enterprisedb
    # Drop the extension
    DROP EXTENSION edb_otel;
  2. On the server where you want to remove the extension, edit the postgresql.conf file. Delete the shared_preload_libraries parameter line.

    In Linux, remove:

    shared_preload_libraries = `$libdir/edb_otel`
  3. To apply the changes, restart the Postgres database server.


Could this page be better? Report a problem or suggest an addition!