美文网首页
elasticsearch安装后其他机器不能访问?

elasticsearch安装后其他机器不能访问?

作者: krystollia | 来源:发表于2019-08-17 14:22 被阅读0次

    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状态。

    相关文章

      网友评论

          本文标题:elasticsearch安装后其他机器不能访问?

          本文链接:https://www.haomeiwen.com/subject/ahzhsctx.html