0

"My predecessor" has installed PostgreSQL 9.1, now I would like to know what is the "Data Directory" installation.

Now I am using this interface:

enter image description here

Can I know using this interface the Data Directory?

Thanks.

Francesco Irrera
  • 205
  • 1
  • 4
  • 10

2 Answers2

2

start PGAdmin3 , connect server , select Tools -> Server Configuration -> postgresql.conf, and look for data_directory variable

simplexio
  • 146
  • 2
1

As a superuser you could run the query

SHOW data_directory;

From https://dba.stackexchange.com/questions/1350/how-do-i-find-postgresqls-data-directory

hmallett
  • 2,455
  • 14
  • 26