当前位置: 首页 > article >正文

Windows安装ElasticSearch与kibana

文章目录

  • ElasticSearch安装
  • kibana安装
  • 示例程序

Elasticsearch的下载链接:https://www.elastic.co/downloads/elasticsearch

kibana的下载链接:https://www.elastic.co/cn/downloads/kibana

ElasticSearch安装

  1. 进入conf\目录下,修改如下两个配置项:xpack.security.enabledxpack.security.http.ssl,都改为false,最后效果如下:

在这里插入图片描述

  1. 解压后进入bin\目录,运行elasticsearch.bat,等一段时间访问网站:http://localhost:9200/,就可以看到成功的json:
    在这里插入图片描述

kibana安装

kibanan安装包下载后解压,等ElasticSearch启动后,运行kibana的启动文件:bin\kibana.bat

等ElasticSearch启动后,启动kibana:http://localhost:5601/app/home#/,就可以看到如下界面:

在这里插入图片描述

点击【Get started by adding integrations】中的【Try sample data】,在弹出页面后点开【Other sample data sets】,就可以下载官方提供的示例数据:

在这里插入图片描述

示例程序

下面是用python连接Elasticsearch并查询记录的程序,首先需要安装:pip install elasticsearch,然后下载完上面的官方数据后,就可以拿其中一个数据集(kibana_sample_data_flights)测试代码:

from elasticsearch import Elasticsearch

# 连接到本地的 Elasticsearch 服务
es = Elasticsearch(hosts=["http://localhost:9200"])

# 检查连接是否成功
if not es.ping():
    print("Elasticsearch无法连接")

# 查询并打印所有索引
response = es.cat.indices(format="json")
for _index_detail in response.body:
    if not _index_detail['index'].startswith("."):
        print("Elasticsearch索引: ", _index_detail['index'])

index_name = 'kibana_sample_data_flights'
response = es.search(index=index_name, size=10)  # 查询10条
for _hit in response["hits"]["hits"]:
    _value = _hit['_source']
    print("FlightNum:", _value["FlightNum"], " DestCountry:", _value['DestCountry'])

最后得到如下结果:

Elasticsearch索引:  kibana_sample_data_flights
Elasticsearch索引:  kibana_sample_data_ecommerce
FlightNum: 9HY9SWR  DestCountry: AU
FlightNum: X98CCZO  DestCountry: IT
FlightNum: UFK2WIZ  DestCountry: IT
FlightNum: EAYQW69  DestCountry: IT
FlightNum: 58U013N  DestCountry: CN
FlightNum: XEJ78I2  DestCountry: IT
FlightNum: EVARI8I  DestCountry: CH
FlightNum: 1IRBW25  DestCountry: CA
FlightNum: M05KE88  DestCountry: IN
FlightNum: SNI3M1Z  DestCountry: IT

http://www.kler.cn/a/456408.html

相关文章:

  • MySQL数据库——索引结构之B+树
  • Windows 使用 非安装版MySQL 8
  • Linux高级--2.4.5 靠协议头保证传输的 MAC/IP/TCP/UDP---协议帧格式
  • 人工智能基础软件-Jupyter Notebook
  • 拆解Java中——“ 注解 ”和“ 注释 ” 的一切区别Ⅱ
  • 【通信网络】二层基础:03 二层转发基础
  • Ardunio BLE keyboard 库的使用
  • 变长的时间戳(第4版)
  • Spring Boot 项目中 Maven 剔除无用 Jar 引用的最佳实践
  • LabVIEW Ctrl+Shift space 快速放置被占用解决办法
  • 三层交换机配置
  • 【UE5.3.2 】引擎中安装RiderLink插件
  • 将现有Web 网页封装为macOS应用
  • TCP 小队列的设计原理
  • Python学习_集合
  • 什么是数据库的锁?怎么实现?
  • 【教程】如何编译指定版本Spark
  • [Hive]七 Hive 内核
  • Kotlin 协程基础知识总结三 —— 协程上下文与异常处理
  • AutoFOX:一种冠状动脉X线造影与OCT的自动化跨模态3D融合框架|文献速递-视觉大模型医疗图像应用
  • IDEA 搭建 SpringBoot 项目之配置 Maven
  • 打造RAG系统:四大向量数据库Milvus、Faiss、Elasticsearch、Chroma 全面对比与选型指南
  • 【新方法】通过清华镜像源加速 PyTorch GPU 2.5安装及 CUDA 版本选择指南
  • 从CreateDialogIndirectParam起---我与大模型对话
  • 使用机器学习在单细胞水平识别肿瘤细胞
  • 【Halcon】数据结构汇总