-
[redis] RDB 저장 실패시에도 write 명령 허용하기데이터베이스 2022. 8. 3. 18:00
Redis 기본설정상 RDB 저장이 비정상적으로 종료가 되면 모든 Write 명령은 동작하지 않습니다.
127.0.0.1:6379> set kim "1234" MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are disabled. Please check Redis logs for details about the error.
RDB 저장 실패시에도 Write를 허용하는 2가지 방법이 있습니다.
1. 명령어
127.0.0.1:6379> config set stop-writes-on-bgsave-error no OK
2. 설정 파일
redis.conf 파일에 다음과 같이 설정해줍니다. (기본 설정은 yes)
stop-writes-on-bgsave-error no
'데이터베이스' 카테고리의 다른 글
[SQL] INNER JOIN과 OUTER JOIN에 대해서 알아보자! (0) 2022.08.05 [redis] Redis 서버 Master/Slave 설정하기 (windows10) (0) 2022.08.04 [JPA] JPA의 변경감지에 대해서 (0) 2022.07.11 [DB]데이터베이스 정규화(1NF, 2NF, 3NF) (0) 2022.07.02 [DB] 함수 종속성(functional dependency)이란? (0) 2022.05.11