Ho installato e creato un database Postgresql su Ubuntu. Ho quindi creato il database usando il seguente comando:
sudo su postgres createdb mydatabase
Tuttavia, non riesco a capire dove è stato inizializzato il database. Vorrei poter modificare il hba.conf
file e i postgresl.conf
file.
Quando visualizzo il database usando pgadmin vedo le seguenti informazioni:
CREATE DATABASE mydatabase
WITH OWNER = postgres
ENCODING = 'UTF8'
TABLESPACE = pg_default
LC_COLLATE = 'en_US.UTF-8'
LC_CTYPE = 'en_US.UTF-8'
CONNECTION LIMIT = -1;
Qualche idea su come posso trovare la posizione del cluster di database?
postgres.conf
mapostgresql.conf
.