공식 근거시스템 변경 없음
확인 명령
# Redis 계열
redis-server --version 2>/dev/null || true
redis-cli INFO server 2>/dev/null | egrep 'redis_version|os|tcp_port' || true
redis-cli INFO replication 2>/dev/null | egrep 'role|connected_slaves|master_link_status' || true
redis-cli ACL LIST 2>/dev/null | head -5 || true
# Elasticsearch/OpenSearch 계열
curl -sk https://localhost:9200/ || curl -s http://localhost:9200/ || true
curl -sk https://localhost:9200/_cluster/health?pretty || curl -s http://localhost:9200/_cluster/health?pretty || true
curl -sk https://localhost:9200/_cat/nodes?v || curl -s http://localhost:9200/_cat/nodes?v || true
curl -sk https://localhost:9200/_cat/plugins?v || curl -s http://localhost:9200/_cat/plugins?v || true
# 패키지/컨테이너 설치 여부도 확인합니다.
rpm -qa | grep -Ei 'redis|elasticsearch|opensearch' || dpkg -l | grep -Ei 'redis|elasticsearch|opensearch' || true
docker ps --format '{{.Names}} {{.Image}}' | grep -Ei 'redis|elastic|opensearch' || true- 예상 결과
- 영향 가능 예시: 공식 권고 기준 조치 대상입니다. / 확인 필요 예시: 클러스터 전체 노드와 plugin/security 설정을 추가 확인해야 합니다.
- 판정·성공 기준
- 공식 권고 기준 조치 대상입니다. 클러스터 전체 노드와 plugin/security 설정을 추가 확인해야 합니다.