当前位置:   article > 正文

使用python连接elasticsearch_python怎么连接elasticsearch8

python怎么连接elasticsearch8

有一个困惑了好久的问题,那就是从python里面连接elasticsearch总是报错。大致长这样
在这里插入图片描述
一开始我是看网上把es的安全功能关闭,也就是下面的内容,这个要进入到es的docker中去改config/elasticsearch.yml配置文件,但是这样改了以后kibana的界面会没有search功能。这种方式不可取…

xpack.security.enabled: false
xpack.security.http.ssl.enabled: false
  • 1
  • 2

不过这里介绍使用一种证书的方式连接,这应该是当前最合适的方式了。
具体操作如下

① 进入到elasticsearch的docker环境中

docker exec -it elasticsearch bash
  • 1

②进入到证书目录下

cd /usr/share/elasticsearch/config/certs
  • 1

有一个证书文件http_ca.crt
在这里插入图片描述
③执行一个命令

openssl x509 -fingerprint -sha256 -in ./http_ca.crt
  • 1

会生成一个Fingerprint字符串,拿到这里就可以了。
在这里插入图片描述
④代码调用


from elasticsearch import Elasticsearch
CERT_FINGERPRINT = ' ' #这里就是刚才获得的Fingerprint字符串
ELASTIC_PASSWORD = ' ' #你的用户名对应密码

client = Elasticsearch(
    "https://localhost:9200",
    ssl_assert_fingerprint=CERT_FINGERPRINT,
    basic_auth=("elastic", ELASTIC_PASSWORD)
)
client.info()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

然后就出现了这个好看的东西哈哈哈
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/635396
推荐阅读
相关标签
  

闽ICP备14008679号