TEST 환경 ES 버전 : 7.11.2 📌 ElasticSearch의 인덱스 조회, 생성, 삭제 명령어 1) ElasticSearch Cluster 상태 확인 명령어 curl --location --request GET 'http://localhost:9200/_cat/health?v' 결과 2) 인덱스 조회 명령어 curl --location --request GET 'http://localhost:9200/_cat/indices?v' 결과 3) 인덱스 생성 명령어 curl --location --request PUT 'http://localhost:9200/books(생성할 인덱스 작성)' 결과 { "acknowledged": true, "shards_acknowledged": true, "inde..