elasticsearch按照官网指示安装启动后,无法从别的机器访问,本机通过 localhost:9200 可以访问。
解决办法:
修改配置文件,添加如下配置
network.host: 0.0.0.0
修改后报错:
the default discovery settings are unsuitable for production use; at least one of [discovery.seed_hosts, discovery.seed_providers, cluster.initial_master_nodes] must be configured
配置文件中再添加(修改)以下两行:
node.name: node-1
cluster.initial_master_nodes: ["node-1"]
Done!
使用 chrome 插件 ElasticSearch Head,可以很方便的查看elasticsearch状态。
网友评论