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归档的主要内容,如果未能解决你的问题,请参考以下文章

postgres WAL归档

pg 10 wal 归档同步配置

PostgreSQL 9.2 归档恢复后最后重放的 WAL

postgres流复制环境下pg_xlog日志优雅的清理

Postgres 流复制错误:请求的 WAL 段已被删除

Postgres/JDBC/逻辑复制 - 内存不足问题