postgresql_hacks/change_settings.md

33 lines
768 B
Markdown
Raw Permalink Normal View History

2022-07-07 10:45:03 +02:00
## How to reload config changes during the runtime (SIGHUP)?
2022-07-07 10:44:11 +02:00
```
select pg_reload_conf();
```
2022-07-07 10:45:03 +02:00
## Does changing a config setting require a restart of postgresql or just a reload (SIGHUP)?
2022-07-07 10:41:37 +02:00
This can be archived by simply selecting the setting from pg_settings.
```
select context from pg_settings where name='max_wal_size';
```
2022-07-07 10:45:03 +02:00
## Is a restart of postgresql required?
2022-07-07 10:41:37 +02:00
```
select pending_restart from pg_settings where name='max_wal_size';
```
This will tell you if a restart is pending for a setting.
2022-08-18 09:41:52 +02:00
## How to check configuration (postgresql.conf) for configuration errors
```
select sourcefile, name,sourceline,error from pg_file_settings where error is not null;
```
## How to check pg_hba.conf for configuration errors
```
select pg_hba_file_rules();
```