일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 스트림셋
- 데이터베이스
- MySQL
- C언어
- 도커
- c++
- 코딩
- 도커 elk
- 도커 mysql
- 클라우드
- python
- c
- docker
- 자바
- mysql on docker
- streamsets 강의
- mysql docker
- nvidia docker
- 앤서블 설치
- 파이썬
- 푸시푸시
- 백준
- 알고리즘
- elk stack
- 스트림셋이란?
- ansible install
- java
- 데이트
- 정보처리기사
- 도커 시작하기
- Today
- Total
리그캣의 개발놀이터
[redis] Error ReplyError: 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 s.. 본문
[redis] Error ReplyError: 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 s..
리그캣 2020. 4. 13. 19:28redis 서버 운용시 아래와 같은 에러가 발생하였다.
Error ReplyError: 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를 docker로 작동하고 있엇기에
docker를 통해 redis-cli를 실행하고 다음을 입력했다
도커 레디스 접근
$docker exec -it {레디스 컨테이너} redis-cli
세팅
> config set stop-writes-on-bgsave-error no |
그후 redis에 저장해보니 해당 오류가 나지않았다.
해결하는 것도 중요하지만 먼저 왜 해당 오류가 발생했는지 알아야된다고 생각한다.
rdb 스냅샷을 지정되게끔 해놓았지만, 리소스가 저장할 디스크 크기가 적당하지 않은것같다.
127.0.0.1:6379> CONFIG SET dir /data/tmp
OK
127.0.0.1:6379> CONFIG SET dbfilename temp.rdb
OK
127.0.0.1:6379> BGSAVE
Background saving started
127.0.0.1:6379>
위와 같이 /data/tmp를 지정하고 이때 /data/tmp의 크기가 적당한지 먼저 체크해야한다.
자세한 내용은 아래를 참고한다.
'프로그래밍 기본 > 서버 구축 및 관리' 카테고리의 다른 글
Git flow branch 전략 (0) | 2021.08.04 |
---|---|
[git] git contribution count 조건 / contribution 그래프 조건 (0) | 2020.07.08 |
[centos7] virtualbox , vagrant install 설치 (0) | 2020.02.03 |
lvm 사용 환경 디스크 용량 늘리기 (3) | 2019.12.11 |
gitlab ce error [2019-11-21T02:12:35.270086 #53524] ERROR -- : Permission denied @ rb_sysopen - /run/gitlab/unicorn/histogram_worker_id_2-0.db 502 error (0) | 2019.11.21 |