开发者学堂课程【ElasticSearch 入门精讲:创建索引库和索引说明】学习笔记,与课程紧密连接,让用户快速学习知识。
课程地址:https://developer.aliyun.com/learning/course/631/detail/9952
创建索引库和索引说明
使用 curl 创建索引库,格式如下:
curl -XPUT http://<ip>:9200/index_name/
其中 http 后面的是索引库的 IP 地址,9200后面的是索引
需求1:
使用 curl 创建一个名为 bigdata 的索引库
H'Content-Type:application/json'
PUT 和 POST 都可以创建索引库 。
举例:
a)使用 PUT 创建索引库:
curl-XPUT 'http://localhost:9200pigdata'
使用单引号把URL框起来
如图:
b)使用 POST 创建索引库:
curl-H'Content-Type:application/json'-XPOST'http://ocalhost:9200/bigdata/product/1'-d
使用 POST 创建索引库则需要加一个类型为 application 的参数:H'Content-Type:application/json',否则系统会报错。