PostgreSQL 开启归档
Posted 刚好遇见Mysql
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PostgreSQL 开启归档相关的知识,希望对你有一定的参考价值。
修改postgresql.conf
archive_mode =on
%p = path of file to archive
%f = file name only
archive_command =‘cp %p /u01/pgsql/archive/pg_%f‘
重启postgresql
pg_ctl stop
pg_ctl start
查看归档
[postgres@redis01 archive]$ ls -lrt
total 32772
-rw------- 1 postgres postgres 16777216 Sep 22 18:49 pg_000000010000000000000001
-rw------- 1 postgres postgres 16777216 Sep 22 18:50 pg_000000010000000000000002
-rw------- 1 postgres postgres 329 Sep 22 18:50 pg_000000010000000000000002.00000060.backup
[postgres@redis01 archive]$ pwd
/u01/pgsql/archive
command 使用逻辑运算符
每天生成一个归档目录
archive_command = ‘DIR=/u01/pgsql/archive/`date +%F`; sudo test ! -d $DIR && sudo mkdir $DIR; sudo test ! -f $DIR/%f && sudo cp %p $DIR/%f‘
以上是关于PostgreSQL 开启归档的主要内容,如果未能解决你的问题,请参考以下文章