[redis] MISCONF Redis is configured to save RDB snapshot... 오류 By starseat 2022-04-06 14:12:12 server/oss Post Tags `Redis` 사용중 다음과 같은 오류가 발생하였다. ``` 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. ``` 이는 `Redis`가 중간중간 스냅샷을 `dump.rdb` 파일로 쓰는데 디스크 풀일 때 스냅샷을 파일로 저장 못하면서 `Redis` 상태가 비정상으로 나오는 오류내용이다. 아래와 같은 방법으로 해결 가능하다. ( + disk 정리도...) ``` redis 127.0.0.1:6379> config set stop-writes-on-bgsave-error no ``` Previous Post [apache] 사용 중인 네트워크에서 로그인 페이지 방문을 요청할 수 있습니다. 오류 Next Post [k8s] 유용한 명령어 (정리중)