"Elasticsearch API 모든 인덱스 삭제"의 두 판 사이의 차이

(새 문서: ==개요== ;Elasticsearch API 모든 인덱스 삭제 <source lang='console'> root@localhost:~# curl -s localhost:9200/_cat/indices yellow open myindex01 MRsSGjKRSu2mE-D2wAK_ew 1 1 2...)
 
17번째 줄: 17번째 줄:


==같이 보기==
==같이 보기==
* [[Elasticsearch API 인덱스 삭제]]
* [[Elasticsearch API 인덱스 목록 용량 조회 /_cat/indices]]
* [[Elasticsearch API 인덱스 목록 용량 조회 /_cat/indices]]


[[분류: Elasticsearch API]]
[[분류: Elasticsearch API]]

2019년 12월 12일 (목) 16:03 판

1 개요

Elasticsearch API 모든 인덱스 삭제
root@localhost:~# curl -s localhost:9200/_cat/indices
yellow open myindex01 MRsSGjKRSu2mE-D2wAK_ew 1 1 2 1 4.7kb 4.7kb
yellow open myindex02 gd1MRmJ-Se-CJ1UD_Pz8Fw 1 1 3 0 3.6kb 3.6kb
root@localhost:~# curl -X DELETE localhost:9200/*
{"acknowledged":true}
root@localhost:~# curl -s localhost:9200/_cat/indices
root@localhost:~#

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}