Hi All,
I just try to use ElasticSearch.
It's my first time to work with it so I need your help.
I setup 3 computers.
PC #1: Run normal ES with cluster name: "tested_cluster"
PC #2: Run normal ES with same above cluster name.
PC #3: Run ES with same above cluster name. (PC #3 is my pc, and it don't
hold data, it's a master node).
It's is the info of each node:
PC#1: http://10.30.12.12:9200/_cluster/nodes?pretty=true
{
"ok" : true,
"cluster_name" : "tested_cluster",
"nodes" : {
"35P43iugS_SKs347cGqedA" : {
"name" : "Bushmaster",
"transport_address" : "inet[/10.30.12.12:9300]",
"http_address" : "inet[/10.30.12.12:9200]"
}
}
}
PC#2: http://10.30.12.94:9200/_cluster/nodes?pretty=true
{
"ok" : true,
"cluster_name" : "tested_cluster",
"nodes" : {
"r25GkH15Rz6N-f8LaWw3TA" : {
"name" : "Baphomet",
"transport_address" : "inet[10.30.12.94/10.30.12.94:9300]",
"hostname" : "WT_ZME_APPS-12.94",
"http_address" : "inet[/10.30.12.94:9200]"
}
}
}
And My PC: http://localhost:9200/_cluster/nodes?pretty=true
{
"ok" : true,
"cluster_name" : "es_zingstore",
"nodes" : {
"ixbOo4JnT-OUlA3WIhxdPA" : {
"name" : "Grappler",
"transport_address" : "inet[/10.199.25.67:9300]",
"hostname" : "zkidkid",
"http_address" : "inet[/10.199.25.67:9200]",
"attributes" : {
"data" : "false",
"master" : "true"
}
}
}
}
I think the problem is by setting discovery, but I don't know how, I have read the guide & tut more than 3 but found nothing.
Thanks.
--