Store PostgreSQL Backups in MinIO Server
MinIO 서버에 PostgreSQL 백업 저장
In this recipe you will learn how to store PostgreSQL backups in MinIO Server.
이 레시피에서는 MinIO 서버에 PostgreSQL 백업을 저장하는 방법을 배웁니다.
1. Prerequisites
1. 전제조건
Install mc from here.
여기에서 mc를 설치하세요.
Install MinIO Server from here.
여기에서 MinIO 서버를 설치하세요.
PostgreSQL official doc.
PostgreSQL 공식 문서입니다.
2. Configuration Steps
2. 구성 단계
MinIO server is running using alias m1.
MinIO 서버는 별칭 m1을 사용하여 실행 중입니다.
Follow MinIO client complete guide here for details. PostgreSQL backups are stored in pgsqlbkp directory.
자세한 내용은 여기에서 MinIO 클라이언트 전체 가이드를 따르세요. PostgreSQL 백업은 pgsqlbkp 디렉토리에 저장됩니다.
Create a bucket.
버킷을 생성합니다.
mc mb m1/pgsqlbkp
Bucket created successfully ‘m1/pgsqlbkp’.
버킷이 ‘m1/pgsqlbkp’를 성공적으로 생성했습니다.
Continuously mirror local backup to MinIO server.
로컬 백업을 MinIO 서버에 지속적으로 미러링합니다.
Continuously mirror pgsqlbkp folder recursively to MinIO.
pgsqlbkp 폴더를 MinIO에 반복적으로 지속적으로 미러링합니다.
Read more on mc mirror here.
여기에서 MC 미러에 대해 자세히 알아보세요.
mc mirror --force --remove --watch pgsqlbkp/ m1/pgsqlbkp