Miscellaneous#

Here are the instructions that should help users with our Quickstart Guide.

Installing PostgreSQL#

The application calls for psql directly, so postgresql-client package should be installed. To install PostgreSQL with postgresql-client run the following command:

sudo apt install postgresql postgresql-client

Changing default PostgreSQL password#

To set up a new PostgreSQL password or change an existing password run the following command:

sudo su - postgres -c "psql -c \"ALTER ROLE postgres WITH PASSWORD 'new_passwd';\""