mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 07:08:01 +00:00
Add Find The Location Of Postgres Config Files as a postgres til
This commit is contained in:
17
postgres/find-the-location-of-postgres-config-files.md
Normal file
17
postgres/find-the-location-of-postgres-config-files.md
Normal file
@@ -0,0 +1,17 @@
|
||||
# Find The Location Of Postgres Config Files
|
||||
|
||||
If you can connect to your database with `psql`, then you can easily find
|
||||
the location of your Postgres config files. After connecting, I can ask
|
||||
Postgres to show me where the main config file is:
|
||||
|
||||
```sql
|
||||
> show config_file;
|
||||
config_file
|
||||
--------------------------------------------------------------------------------
|
||||
/Users/jbranchaud/Library/Application Support/Postgres/var-9.5/postgresql.conf
|
||||
```
|
||||
|
||||
In the same directory as that `postgresql.conf` file are a number of other
|
||||
configuration files such as the `pg_hba.conf` file.
|
||||
|
||||
h/t Dillon Hafer
|
||||
Reference in New Issue
Block a user