반응형
Redis 기본 명령어
연결(Connect)
$ redis-cli -h <target ip> -p <target port> -a <Password>
GET/SET
지정된 값 가져오기, 설정하기
DEL
지정된 값 삭제하기
INFO
Redis 서버 설정 정보 확인하기
https://redis.io/commands/info
MONITOR
Redis에서 수행되는 명령어를 실시간으로 모니터링하기
이외에도 RENAME, SADD, SCAN, SMEMBER 등 여러 명령어가 존재한다.
모든 명령어 모음 : https://redis.io/commands
Redis Cluster 명령어
Redis 명령어중 Cluster 명령어 모음 : https://redis.io/commands#cluster
사용법 모음 : http://redisgate.kr/redis/cluster/redis-cli-cluster.php
Cluster INFO
클러스터 정보를 조회한다.
Cluster NODES
현재 클러스터의 구성 및 연결상태, 플래그, 속성등을 볼 수 있다.
Nodes 연결 안되어서 cluster 깨져있을때는 상태가 fail로 보인다.
정상일때는 아래와 같이 fail flag가 없음.
반응형
'IT Knowledge > 기타' 카테고리의 다른 글
RockyOS Chrony(feat. ntpdate) (0) | 2023.09.12 |
---|---|
RedisClusterNode Validate that the Redis URI are equal when comparing nodes (1) | 2023.09.04 |
Redis Cluster On Kubernetes (0) | 2023.09.03 |
OS TCP Parameters 튜닝 (1) | 2023.08.25 |
Tuned 개요 및 사용법 (4) | 2023.08.17 |
댓글