《Elastic Stack 实战手册》——三、产品能力——3.4.入门篇——3.4.1.Elastic Stack 安装部署——3.4.1.7.阿里云Elasticsearch服务(2) https://developer.aliyun.com/article/1231306
步骤二:访问实例
等待实例状态变为正常,即可执行以下步骤,通过 Kibana 访问实例。
您也可以通过 curl 命令和客户端方式访问实例。
具体操作,请参见快速访问与配置:https://help.aliyun.com/document_detail/134862.htm?spm=a2c4g.11186623.2.21.33de9184Q0R30l#section-dy2-a9s-1ym
1、在实例列表中,单击目标实例ID。
2、在左侧导航栏,单击可视化控制。
3、在 Kibana 区域中,单击进入控制台。
4、在登录页面输入账号和密码,单击登录。账号为 elastic,密码为您创建实例时设置的密码。
如果忘记可重置,重置密码的具体操作和注意事项,请参见重置实例访问密码:https://help.aliyun.com/document_detail/159883.htm#task-2458093
1、在登录成功页面,单击 Explore on my own。
2、在左侧导航栏,单击 Dev Tools(开发工具),再单击 Go to work。
3、在 Console 中,执行如下命令访问 Elasticsearch 实例。
GET /
访问成功后,结果如下。
{ "name" : "tgeAvZe", "cluster_name" : "es-cn-nif1z64qj003g****", "cluster_uuid" : "IZmmd9IGTmKzqiZiyz****", "version" : { "number" : "6.7.0", "build_flavor" : "default", "build_type" : "tar", "build_hash" : "c9c0c3a", "build_date" : "2020-12-01T08:00:27.556078Z", "build_snapshot" : false, "lucene_version" : "7.7.0", "minimum_wire_compatibility_version" : "5.6.0", "minimum_index_compatibility_version" : "5.0.0" }, "tagline" : "You Know, for Search" }
步骤三:创建索引
创建一个名称为 product_info 的索引:
PUT /product_info { "settings": { "number_of_shards": 5, "number_of_replicas": 1 }, "mappings": { "properties": { "productName": { "type": "text", "analyzer": "ik_smart" }, "annual_rate":{ "type":"keyword" }, "describe": { "type": "text", "analyzer": "ik_smart" } } } }
以上示例创建了一个名称为 product_info 的索引。索引的类型为 products(7.0及以上版本为_doc),并包含了 productName、annual_rate 和 describe 字段。
创建成功后,返回结果如下。
{ "acknowledged" : true, "shards_acknowledged" : true, "index" : "product_info" }
《Elastic Stack 实战手册》——三、产品能力——3.4.入门篇——3.4.1.Elastic Stack 安装部署——3.4.1.7.阿里云Elasticsearch服务(4) https://developer.aliyun.com/article/1231304