admin 管理员组

文章数量: 887021

亲测有效:我部署的是7.1.1 windows版本,安装环境是win10
问题:部署后localhost:9200可以访问,但是本机器或其他本局域网上ip:9200无法访问
解决过程:在网上查询无果,更多是Linux适用的,只能自己动手寻找原因,添加完network.host: 0.0.0.0后,报错,最后排查错误。
解决方法:修改config/elasticsearch.yml中,新增
network.host: 0.0.0.0
discovery.seed_hosts: ["0.0.0.0", "[::1]"]
重启就OK了,可以IP:9200访问。

xpack.ml.enabled: false
http.cors.enabled: true
http.cors.allow-origin: "*"
network.bind_host: 0.0.0.0
discovery.seed_hosts: ["0.0.0.0", "[::1]"]
cluster.initial_master_nodes: ["node-1"]
xpack.ml.enabled: false
network.host: 0.0.0.0
node.name: node-1
node.master: true
discovery.seed_hosts: ["0.0.0.0", "[::1]"]
# 开启跨域访问支持,默认为false
http.cors.enabled: true
# 跨域访问允许的域名地址
http.cors.allow-origin: "*"

 

本文标签: 地址 系统 Windows IP elasticsearch