报错截图
报错代码
from elasticsearch import Elasticsearch
es = Elasticsearch(hosts="192.168.0.76")
报错原因
python使用ElasticSearch库连接elasticsearch的时候url不符合格式,是elasticsearch库版本的原因,ElasticSearch==7.14.0以上的版本不支持这样的连接方法文章来源:https://www.toymoban.com/news/detail-523930.html
解决方案
方案一:修改连接的url
在host中添加http://
文章来源地址https://www.toymoban.com/news/detail-523930.html
from elasticsearch import Elasticsearch
es = Elasticsearch(hosts="http://192.168.0.76:9200")
方案二:将ElasticSearch库卸载重装低版本
# 卸载原elasticsearch库
pip uninstall elasticsearch
# 安装7.13.0版本的elasticsearch库
pip install elasticsearch==7.13.0
到了这里,关于Python~ValueError: URL must include a ‘scheme‘, ‘host‘, and ‘port‘ component的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!