I have a server running elasticsearch and kibana. I added a second node to create the cluster, but I want the second node to replicate data from the node wizard.
Based on the limited documentation on how to do this, I start at the second moment with the following error
[DEBUG][action.admin.indices.get ] [Match] no known master node, scheduling a retry
I cannot determine the best configuration for both servers to achieve this, but this is what I have done so far:
Node wizard Configuration:
cluster.name: elasticsearch node.master: true path.data: /local00/elasticsearch/ path.work: /local00/el_temp/ network.host: 0.0.0.0 http.port: 9200 script.disable_dynamic: true
Node 2
cluster.name: elasticsearch node.master: false node.data: true index.number_of_shards: 5 index.number_of_replicas: 1 path.data: /local00/elasticsearch/ path.work: /local00/el_temp/ network.host: 0.0.0.0 http.port: 9200 script.disable_dynamic: true
I assume that somewhere there is no additional configuration. Any help would be greatly appreciated.
source share