From 6a17360b4c3c0d8d1d2152933b1b8e48b82cad55 Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Fri, 10 Apr 2015 16:45:04 +0900 Subject: [PATCH] Add FAQ item about `shared_preload_libraries = 'repmgr_funcs'` --- FAQ.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/FAQ.md b/FAQ.md index b9425225..ace79fca 100644 --- a/FAQ.md +++ b/FAQ.md @@ -99,6 +99,13 @@ General To specify a port for the witness server, supply the port number to repmgr with the `-l/--local-port` command line option. +- Do I need to include `shared_preload_libraries = 'repmgr_funcs'` + in `postgresql.conf` if I'm not using `repmgrd`? + + No, the `repmgr_funcs` library is only needed when running `repmgrd`. + If you later decide to run `repmgrd`, you just need to add + `shared_preload_libraries = 'repmgr_funcs'` and restart PostgreSQL. + `repmgrd` ---------