elasticsearch 7.x 集群配置

集群配置

cluster.name: escluster
node.name: node-1

网络绑定,绑定 0.0.0.0,支持外网访问

network.host: IP地址
http.port: 9201

设置节点间交互的tcp端口,默认是9300

transport.tcp.port: 9301

集群发现

discovery.seed_hosts: [“127.0.0.1:9301”,“127.0.0.1:9302”,“127.0.0.1:9303”]

手动指定可以成为 mater 的所有节点的 name 或者 ip,这些配置将会在第一次选举中进行计算

cluster.initial_master_nodes: [“node-1”, “node-2”,“node-3”]

跨域请求问题

http.cors.enabled: true
http.cors.allow-origin: “*”

你可能感兴趣的:(elasticsearch)