Redis Persistence - RDB 수동백업 설정
Redis Persistence - RDB 수동백업 설정
이번 포스팅에서는 Redis RDB 수동백업에 대해서 알아보도록 하겠습니다.
Redis 이전글 |
https://server-talk.tistory.com/471 - Redis - In-Memory - 알아보기
https://server-talk.tistory.com/472 - Redis - 서버 설치 및 기본설정 알아보기
https://server-talk.tistory.com/473 - Redis - Redis-cli 기본 사용법
https://server-talk.tistory.com/474 - Redis - Redis Desktop Manager Tool
https://server-talk.tistory.com/475 - phpredis 설치 알아보기
https://server-talk.tistory.com/489 - Redis - Persistence 란?
https://server-talk.tistory.com/490 - Redis Persistence - AOF 기본설정 알아보기
https://server-talk.tistory.com/491 - Redis Persistence - AOF 다시쓰기(Rewrite) 알아보기
https://server-talk.tistory.com/492 - Redis - Persistence - AOF 상태정보 알아보기
https://server-talk.tistory.com/493 - Redis - Persistence - RDB 기본설정
Redis Persistence - RDB 동작구조 |
Redis 에서 RDB 생성시 시작시 임시파일(Temp)에 새 RDB를 생성합니다
임시 RDB에 데이터를 모두 쓰고 나면 기존 RDB를 삭제하고 새로 생성한 RDB파일의 이름을 변경합니다.
Redis Persistence - RDB 수동백업 |
명령어 : BGSAVE
127.0.0.1:6379> BGSAVE
Background saving started
Background saving started : BGSAVE 명령을 수행후 표시됩니다.
Background save already in progress : BGSAVE 명령을 이미 실행중일 경우 표시됩니다.
An AOF log rewriting in progress: can't BGSAVE right now. Use BGSAVE SCHEDULE in order to schedule a BGSAVE whenver possible. : AOF 다시쓰기(Rewrite)가 진행중일 경우 표시면서 중지됩니다.