backup
-
PostgreSQL 백업 도구 비교PostgreSQL 2019. 10. 11. 13:44
개요 PostgreSQL 백업에 대해 관리할 수 있는 도구는 여러 개 존재한다. 이 글에서는 Barman, pgBackRest, WAL-E에 대해 기능을 비교한다. 기능을 비교하기 위해 각 도구의 문서를 참고한다. Barman 문서: http://docs.pgbarman.org/release/2.4/ pgbackrest 문서: https://pgbackrest.org/ wal-e 문서: https://github.com/wal-e/wal-e 프로젝트 개요 Barman pgbackrest WAL-E 회사/커뮤니티 2ndQuadrand crunchydata wal-e first release 11년 9월 v0.1.0 14년 9월 v0.10 11년 3월 v0.1.0 last release 18년 5월 v2.4..
-
pgBackRest 설치PostgreSQL 2019. 10. 11. 13:35
pgBackRest 설치에 대해 설명한다. 참고: https://blog.dbi-services.com/backup-and-restore-postgresql-with-pgbackrest-i/ 설치 1. 다운로드 $ wget https://github.com/pgbackrest/pgbackrest/archive/release/2.04.tar.gz $ tar -xvf 2.04.tar.gz 2. 의존성 빌드 문서에서는 ubuntu라서 다른 점이 있다. yum groupinstall "Development Tools" "Development Libraries" yum install perl-DBD-Pg perl-JSON perl-Digest-SHA.x86_64 perl-ExtUtils-Embed perl-Com..
-
Barman 설치PostgreSQL 2019. 10. 11. 13:27
Barman 설치에 대해 설명한다. 참고: http://rajeshmadiwale.blogspot.com/2016/03/barmanbackup-and-recovery-manager-is.html 설치 1. 다운로드 [bylee@localhost install]$ git clone https://github.com/2ndquadrant-it/barman.gi [bylee@localhost install]$ cd barman/ [bylee@localhost barman]$ ll 합계 256 -rw-rw-r--. 1 bylee bylee 1356 8월 2 16:10 AUTHORS -rw-rw-r--. 1 bylee bylee 135084 8월 2 16:10 ChangeLog -rw-rw-r--. 1 bylee..