PostgreSQL

Info

SELECT version();
SELECT now();

Config

https://www.postgresql.org/docs/current/static/runtime-config-file-locations.html

SHOW config_file;       -- /var/lib/postgresql/data/postgresql.conf
SHOW data_directory;    -- /var/lib/postgresql/data
SHOW hba_file;          -- /var/lib/postgresql/data/pg_hba.conf
    -- host-based authentication
    -- https://www.postgresql.org/docs/current/static/auth-pg-hba-conf.html
SHOW ident_file;        -- /var/lib/postgresql/data/pg_ident.conf
    -- user name mapping: SYSTEM-USERNAME PG-USERNAME
SHOW external_pid_file;

pgadmin

DB->'Schemas'->'public'->'Tables'->right click table->'View/Edit Data'->'All Rows'

Commands

https://www.postgresql.org/docs/current/static/app-psql.html

user

db

Last updated

Was this helpful?