Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 스프링 컨테이너와 스프링 빈
- KotlinInAction
- Kotlin In Action
- spring
- 스프링 핵심 원리 - 기본편
- Kotlin in action 3장
- Kotlin in action 10장
- 컨베이어 벨트 위의 로봇 Python
- 스프링 핵심 원리
- 자바 ORM 표준 JPA 프로그래밍 7장
- Kotlin in action 5장
- 싱글톤 컨테이너
- 7장 고급매핑
- Python
- 스프링 핵심 원리 이해
- 13460 구슬탈출 2
- kotlin in action 정리
- 기능개발 python
- 백준 20055 컨베이어 벨트 위의 로봇
- Kotlin
- 백준
- 객체 지향 설계와 스프링
- 코틀린인액션
- 20055 컨베이어 벨트 위의 로봇
- 코틀린
- Kotlin in action 6장
- 코틸린인액션
- 20055
- 백준 13460 Python
- 고급매핑
Archives
- Today
- Total
기록하는 습관
[Error] RDB 백업 관련 에러 발생 본문
local redis 사용중, RDB 백업 관련 에러 발생.
에러 메시지
MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error..
|
→ Redis를 캐시 용도로 사용중이면 백업 DB는 아래 옵션으로 off 해도 됨.
$ config set stop-writes-on-bgsave-error no
- Redis는 persistent 를 위해서 BGSAVE로 rdb를 만들어낸다.
- 그런데 기본적으로 이 BGSAVE가 실패하게 되면 Redis는 설정에 따라서 Write 커맨드를 전부 거부 해버린다.
- 그래서 Redis를 단순한 캐시 용도로만 사용한다면 rdb 기능을 꺼버리면 된다.
참고
'개발' 카테고리의 다른 글
[장애차단] MSA 회복성 패턴 (0) | 2022.11.09 |
---|---|
검색 - Netflix GraphQL Search Indexing 정리 (0) | 2022.07.06 |
[crawling] request와 Beautifulsoup4을 이용한 웹크롤링 (0) | 2020.02.22 |
Comments