Skip to content

PostgreSQL

Lucian Cumpata edited this page Jul 22, 2019 · 4 revisions
  • Basic postgresql terminal commands

$ sudo su - postgres

psql

\conninfo

\password postgres

\list

\l

\q

  • How to find the postgresql.conf file?

$ psql -U postgres -c 'SHOW config_file'

  • How to restart postgresql?

# service postgresql restart

Clone this wiki locally