Relational Database¶
New clients/instances need a new database. Each time that a new instance is deployed we need to create a new user and a new database for it.
To create the new user and new database follow these steps:
- Login as admin in the DBoD instance:
$ psql -h <HOST> -p <PORT> -U <ADMIN_USER>
- Create the database (with the name of the client, e.g. webservices, edms):
CREATE DATABASE <DB_NAME>;
- Create the user with the same name as the database:
CREATE USER <USER_NAME> WITH PASSWORD '<PASSWORD>';
- Grant the necessary priviledges to the user:
GRANT ALL PRIVILEGES ON DATABASE <DB_NAME> to <USER_NAME>;
GRANT ALL PRIVILEGES ON ALL SEQUENCES IN SCHEMA public TO <USER_NAME>;
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO <USER_NAME>;
pg_hba.conf
file to allow the new user to connect.
# User related -- PLEASE EDIT HERE
host all admin 0.0.0.0/0 md5
host <DB_NAME> <USER_NAME> 0.0.0.0/0 md5
host postgres <USER_NAME> 0.0.0.0/0 md5
Reloading
You might need to "reaload processes" in order to make the pg_hba.conf
file effective.