Configure Postgres external database
You must configure a Postgres database and add the profileragent database user to the database.
You must configure a Postgres database and add the profileragent database user to the database.
psql -U postgres
CREATE DATABASE $profileragentdb;
CREATE USER $profileragentuser WITH PASSWORD '$password';
GRANT ALL PRIVILEGES ON DATABASE $profileragentdb TO $profileragentuser;
The default value for $profileragentdb and $profileragentuser is profileragent.