...
Firstly, shutdown the pillar if it is running before continuing.
Setup
Install the PostgreSQL database
- Install PostgreSQL.
Install databases in PostgreSQL, with Create a super-user named 'bitmag' (and with 'bitmag' as password - (used in settings)
...
- (write password (bitmag) twice)
...
by running the following in the terminal
Code Block |
---|
createuser -P -s -e bitmag - When prompted, write password bitmag twice createdb checksumdb createdb auditdb psql -d checksumdb -f /path/to/checksumDBCreation.sql |
...
psql -d auditdb -f /path/to/auditContributorDBCreation.sql |
Fix ReferenceSettings for the pillar
...