Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. ========Node-1======================
  2. cluster.name: "docker-cluster"
  3. network.host: 0.0.0.0
  4. http.port: 9200
  5. node.master: true
  6. node.data: true
  7. discovery.zen.minimum_master_nodes: 2
  8. discovery.zen.ping.unicast.hosts: ["NODE1-IP","NODE2-IP"]
  9.  
  10. ===============Node-2==============
  11.  
  12. cluster.name: "docker-cluster"
  13. network.host: 0.0.0.0
  14. http.port: 9200
  15. node.master: true
  16. node.data: true
  17. discovery.zen.minimum_master_nodes: 2
  18. discovery.zen.ping.unicast.hosts: ["NODE1-IP","NODE2-IP"]
  19.  
  20. ========Node-1======================
  21. cluster.name: "docker-cluster"
  22. network.host: <instance1-ip>
  23. http.port: 9200
  24. node.master: true
  25. node.data: true
  26. discovery.zen.minimum_master_nodes: 2
  27. discovery.zen.ping.unicast.hosts: ["<instance1-ip>","<instance2-ip>"]
  28.  
  29. ===============Node-2==============
  30.  
  31. cluster.name: "docker-cluster"
  32. network.host: <instance2-ip>
  33. http.port: 9200
  34. node.master: true
  35. node.data: true
  36. discovery.zen.minimum_master_nodes: 2
  37. discovery.zen.ping.unicast.hosts: ["<instance1-ip>","<instance2-ip>"]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement