redis-cli
- info
- role
/etc/redis.conf
- save => 백업 정책 중, .rdb 파일 형태로 백업 여부 확인 가능
- dbfilename => .rdb 형태 백업 파일 이름
- appendonly => 백업 정책 중, aof 형태로 백업 여부 확인 가능
- appendfilename => .aof 형태 백업 파일 이름
- dir => .dmp 혹은 .aof 파일 위치 확인 가능
# 즉 ${dir}/${dbfilename} 혹은 ${dir}/${appendfilename} 형태로 존재함.
/etc/redis-sentinel.conf
- sentinel monitor "master name" "ip" "port" "quorum"
redis-sentinel 실행 후, 설정 파일 하단에 모든 sentinel 들이 있음을 확인 할 수 있다.