我想设置wal_debug
我的postgresql.conf
,这样我就可以看到预写日志(WAL)发生了什么。
我编译了 PostgreSQL --enable-debug
:
./configure --prefix=/usr/local/pgsql --enable-nls --with-perl --with-libxml --with-pam --enable-debug
并将其添加到postgresql.conf
wal_debug = on
当我尝试启动 postgres 时,服务器抱怨:
$ pg_ctl start
server starting
FATAL: unrecognized configuration parameter "wal_debug"
我错过了什么?