elasticsearch_索引的各种使用+postman

目录

一、说明

二、索引的各种操作

1、创建索引index_01

2、查看创建的某一个索引

3、删除某个索引

4、查询多个索引

5、查询所有索引

6、查询某个索引是否存在

7、关闭某个索引

8、打开某个索引


一、说明

1、在linux上可以使用CURL命令进行各种索引的操作,为了方便这里使用postman工具;

2、curl举例:

获取所有索引:curl -X GET "localhost:9200/_all";

注意:GET必须大写;

二、索引的各种操作

1、创建索引index_01

elasticsearch_索引的各种使用+postman_第1张图片

2、查看创建的某一个索引

elasticsearch_索引的各种使用+postman_第2张图片

3、删除某个索引

elasticsearch_索引的各种使用+postman_第3张图片

4、查询多个索引

elasticsearch_索引的各种使用+postman_第4张图片

5、查询所有索引

elasticsearch_索引的各种使用+postman_第5张图片

elasticsearch_索引的各种使用+postman_第6张图片

6、查询某个索引是否存在

elasticsearch_索引的各种使用+postman_第7张图片

200:存在

elasticsearch_索引的各种使用+postman_第8张图片

404:不存在

7、关闭某个索引

elasticsearch_索引的各种使用+postman_第9张图片

elasticsearch_索引的各种使用+postman_第10张图片

8、打开某个索引

elasticsearch_索引的各种使用+postman_第11张图片

elasticsearch_索引的各种使用+postman_第12张图片

你可能感兴趣的:(ELK,elasticsearch)