PostgreSQL

From Briki
Revision as of 12:35, 7 February 2020 by Andrew (talk | contribs)
Jump to: navigation, search

Creating a DB

 sudo -u postgres createdb <dbname>

Creating a role

Note that in postgres all access is managed by "roles", there is no concept of users or groups (though for historical purposes users and roles can be thought of as largely interchangeable).

Without a password:

 sudo -u postgres createuser <username>

With a password:

 sudo -u postgres createuser <username> -P

Authentication

Local Users

By default (defined in `/etc/postgresql/11/main/pg_hba.conf`), local users can authenticate without needing a password into a role with the same name as their username.

Remote Users

Remote users (including those connecting from other docker containers) can only connect as roles with passwords defined.

Starting an interactive session

 psql <dbname>