postgres 开始wal归档
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postgres 开始wal归档相关的知识,希望对你有一定的参考价值。
postgres 开始wal归档:
a.修改wal_level参数:
alter system set wal_level= ‘replica‘;
postgres=# alter system set wal_level= ‘replica‘;
ALTER SYSTEM
b.修改archive_mode参数:
alter system set archive_mode= ‘on‘;
postgres=# alter system set archive_mode= ‘on‘;
ALTER SYSTEM
c.修改archive_command 参数:
alter system set archive_command = ‘/bin/cp -i %p /pgdata/10/archive_wal/%f‘;
postgres=# alter system set archive_command = ‘/bin/cp -i %p /pgdata/10/archive_wal/%f‘;
ALTER SYSTEM
以上是关于postgres 开始wal归档的主要内容,如果未能解决你的问题,请参考以下文章