Skip to content

Instantly share code, notes, and snippets.

@palash25
Created September 13, 2019 10:33
Show Gist options
  • Save palash25/67001110bdb46b93d2c0ae436a46b794 to your computer and use it in GitHub Desktop.
Save palash25/67001110bdb46b93d2c0ae436a46b794 to your computer and use it in GitHub Desktop.
node-01
cluster.name: test
node.name: es-master-01
node.master: true
node.ingest: false
node.data: true
http.enabled: false
path.data: data/master
discovery.zen.ping.unicast.hosts: ["localhost:9301", "localhost:9302"]
network.host: 0.0.0.0
transport.host: localhost
transport.tcp.port: 9300
http.port: 9200
Node-02
cluster.name: test
node.name: es-client-01
node.master: true
node.ingest: true
node.data: false
http.enabled: true
path.data: data/client
discovery.zen.ping.unicast.hosts: ["localhost:9300", "localhost:9301"]
discovery.zen.minimum_master_nodes: 1
network.host: 0.0.0.0
transport.host: localhost
transport.tcp.port: 9302
http.port: 9202
node-03
cluster.name: test
node.name: es-data-01
node.master: true
node.ingest: false
node.data: true
http.enabled: false
path.data: data/data
discovery.zen.ping.unicast.hosts: ["localhost:9300", "localhost:9302", "localhost:9303"]
discovery.zen.minimum_master_nodes: 1
network.host: 0.0.0.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment