-
Notifications
You must be signed in to change notification settings - Fork 0
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