项目场景:
提示:这里简述项目相关背景:
python第一次操作ES
问题描述
提示:这里描述项目中遇到的问题:
from elasticsearch import Elasticsearch
# 连接es
# es = Elasticsearch()
es = Elasticsearch(['http://10.0.0.1:9200'], http_auth=('ryan', 'axax1234'), timeout=3600)
result = es.indices.create(index='news', ignore=400)
print(result)
提示
The client noticed that the server is not Elasticsearch and we do not support this unknown product
原因分析:
提示:这里填写问题的分析:
es为了与aws大战,在新的版本中,不再支持apach 2.0开源协议
解决方案:
提示:这里填写该问题的具体解决方案:文章来源:https://www.toymoban.com/news/detail-514525.html
更换es版本降到7.14以下就可以啦文章来源地址https://www.toymoban.com/news/detail-514525.html
pip install Elasticsearch==7.13
到了这里,关于python第一次操作ES The client noticed that the server is not Elasticsearch and we do not support this unk的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!