What is the default directory where postgresql will keep all databases on linux?
|
feedback
|
|
The "directory where postgresql will keep all databases" (and configuration) is called "data directory" and is tied to what postgresql calls (a little confusingly) a "database cluster" (not related to distributed computing - it just means a group of databases and related objects managed by a postgresql server). Its location depends on the distribution. If you install from source, the default is /usr/local/pgsql/data
An instance of a running postgresql server is associated to a cluster; the location of its data directory can be passed to the server daemon ("postmaster" or "postgres") in the
Notice that it is possible (though not frequent) to run two instances of the same postgresql server (same binaries) that serve distinct "clusters" (directories). Of course, they would listen in different TCP/IP ports. | |||
|
feedback
|
At least in Gentoo Linux by default. You can find postgresql.conf and look at param | |||||
feedback
|