May 2019
Intermediate to advanced
600 pages
20h 46m
English
The postgresql.conf file also supports an include directive. This allows the postgresql.conf file to reference other files, which can then reference other files, and so on. That may help you organize your parameter settings better, if you don't make it too complicated.
For more on reloading, see the Reloading the server configuration files recipe in Chapter 4, Server Control.
Furthermore, you can change the values stored in the parameter files directly from your session, with syntax such as the following:
ALTER SYSTEM SET shared_buffers = '1GB';
This command will not actually edit postgresql.conf. Instead, it writes the new setting to another file named postgresql.auto.conf. The effect is equivalent, albeit in a safer ...
Read now
Unlock full access