PostgreSQL

A distinct database is required.

Follow the same steps as for creating the ConSol CM database (see section PostgreSQL). Use as database name cmrfdatabase and user cmrf.

CREATE DATABASE cmrf;

CREATE USER cmrf WITH PASSWORD 'password';

GRANT ALL PRIVILEGES ON DATABASE cmrf TO cmuser;

GRANT ALL PRIVILEGES ON DATABASE cmrf TO cmrf;

Connect to the database and grant access to the public schema to the database user:

GRANT ALL ON SCHEMA PUBLIC TO cmuser;

GRANT ALL ON SCHEMA PUBLIC TO cmrf;