准备2台机器,我这里有192.168.4.213 和 192.168.101.177
192.168.4.213 作为master
192.168.101.177作为普通node
#集群名称 所有节点要相同 cluster.name: my-application #本节点名称 node.name: node-111 network.host: 0.0.0.0 http.port: 9200 # head插件设置 http.cors.enabled: true #设置可以访问的ip 这里全部设置通过 http.cors.allow-origin: "*" #作为master节点 node.master: true #是否存储数据 node.data: true #设置节点 访问的地址 设置master所在机器的ip discovery.zen.ping.unicast.hosts: ["192.168.4.213"]
#集群名称 所有节点要相同 cluster.name: my-application #本节点名称 node.name: node-112 network.host: 0.0.0.0 http.port: 9200 # head插件设置 http.cors.enabled: true #设置可以访问的ip 这里全部设置通过 http.cors.allow-origin: "*" #作为master节点 node.master: false #是否存储数据 node.data: true #设置节点 访问的地址 设置master所在机器的ip discovery.zen.ping.unicast.hosts: ["192.168.4.213"]
3.集群搭建成功
最新评论: