随笔分类 -  linux / ElasticSearch的操作

ElasticSearch的操作
摘要:1、下载 https://link.zhihu.com/?target=https%3A//www.elastic.co/cn/downloads/past-releases/elasticsearch-7-17-1 2.解压安装 3.配置 ES_HOME环境变量 4.配置log、data路径 5. 阅读全文
posted @ 2025-07-08 11:24 vello 阅读(77) 评论(0) 推荐(0)
摘要:查询所有索引: GET _search { "query": { "match_all": {} } } 展示结果 { "took": 490, "timed_out": false, "_shards": { "total": 39, "successful": 39, "skipped": 0, 阅读全文
posted @ 2024-12-17 15:07 vello 阅读(507) 评论(0) 推荐(0)
摘要:安装成功状态 GET http://IP:9200/ { "name" : "es7", // 节点名称 "cluster_name" : "es-cluster", // 集群名称 "cluster_uuid" : "J17I0YrbRVWZSzxxRjKFjQ", "version" : { " 阅读全文
posted @ 2024-12-17 14:33 vello 阅读(542) 评论(0) 推荐(0)