Hello i have two cluster with basic security. And i want to setup bi-directional replication. All nodes 7.13 version. Bi-directional replication with Elasticsearch cross-cluster replication (CCR) | Elastic Blog
1t cluster- 107: master, remote_cluster_client; 106 - data, remote_cluster_client; 108 - ingest, remote_cluster_client; 108 - remote_cluster_client
2d cluster - 111: master, remote_cluster_client; 112 - data, remote_cluster_client; 113 - ingest, remote_cluster_client; 114 - remote_cluster_client
I launch this command on both clusters
PUT /_cluster/settings
{
"persistent" : {
"cluster" : {
"remote" : {
"elk2" : {
"seeds" : [
"172.29.39.112:9300",
"172.29.39.113:9300",
"172.29.39.114:9300"
]
},
"elk1" : {
"seeds" : [
"172.29.39.106:9300",
"172.29.39.108:9300",
"172.29.39.110:9300"
]
}
}
}
}
}
and now i have next result
on 1st cluster(elk1):
on 2d cluster(elk2):
At the question mark it writes me: "Ensure the seed nodes are configured with the remote cluster's transport port, not the http port"
I didnt find cluster's transport port here Transport | Elasticsearch Guide [7.5] | Elastic
What i need to do? Add certificates from one cluster to other, or set passwords? Should I add special transport settings?