elasticSearch集群配置

## elasticSearch集群配置
```yaml
http.cors.enabled: true
http.cors.allow-origin: "*"
cluster.name: myes
network.host: 0.0.0.0
node.name: node-02
http.port: 9201
transport.tcp.port: 9301
discovery.zen.ping.unicast.hosts: ["192.168.23.155:9300","192.168.23.155:9301","192.168.23.155:9302"]
discovery.zen.minimum_master_nodes: 3
```

原文地址:https://www.cnblogs.com/leigepython/p/10675901.html