InstallationPDF version

Configure the EFM Server Metadata Store in Postgres

The EFM Server requires a relational data store to store metadata. To use Postgres for this, create a database for the CEM metastore.

  1. Log in to Postgres:
    sudo su postgres
    psql
  2. Create a database called efm with the password efm:
    create database efm;
    CREATE USER efm WITH PASSWORD 'efm;
    GRANT ALL PRIVILEGES ON DATABASE "efm" to efm;

We want your opinion

How can we improve this page?

What kind of feedback do you have?