elasticsearch 集群配置

记得打开9300端口
es1配置:

http.port: 9200
network.host: 0.0.0.0
#memory
bootstrap.memory_lock: true
http.cors.enabled: true
http.cors.allow-origin: "*"
cluster.name: xiaofeng
node.name: xiaofeng_1
node.master: true
node.data: true
indices.fielddata.cache.size: 50mb
discovery.zen.minimum_master_nodes: 1
discovery.zen.ping.unicast.hosts: ["ip1:9300","ip2:9300"]
path.data: /www/server/es/elasticsearch-6.5.4/data
path.logs: /www/server/es/elasticsearch-6.5.4/logs
http.cors.allow-headers: "X-Requested-With,Content-Type, Content-Length, Authorization"

es2配置:

http.port: 9200
network.host: 0.0.0.0
#memory
bootstrap.memory_lock: true
http.cors.enabled: true
http.cors.allow-origin: "*"
cluster.name: xiaofeng
node.name: xiaofeng_2
node.master: false
node.data: true
indices.fielddata.cache.size: 50mb
discovery.zen.minimum_master_nodes: 1
discovery.zen.ping.unicast.hosts: ["ip1:9300","ip2:9300"]
path.data: /www/server/es/elasticsearch-6.5.4/data
path.logs: /www/server/es/elasticsearch-6.5.4/logs
http.cors.allow-headers: "X-Requested-With,Content-Type, Content-Length, Authorization"

 

参考https://www.cnblogs.com/bixiaoyu/p/9460554.html

cluster.name: es_data #配置集群名称
node.name: es_node1 #节点名称
node.master: true #指定了该节点是否有资格选举master,默认为true
node.data: true #指定该节点是否存储索引数据,默认为true,表示为数据存储
path.data: /usr/local/elasticsearch/data #设置索引数据存储的位置
path.logs: /usr/local/elasticsearch/logs #设置日志文件存储的位置
bootstrap.memory_lock: true #设置true用来锁住物理内存
indices.fielddata.cache.size: 50mb #索引字段缓存大小
network.host: 0.0.0.0 #监听地址
http.port: 9200 #Elasticsearch对外提供的http端口
discovery.zen.ping.unicast.hosts: ["192.168.37.134:9300","192.168.37.135:9300","192.168.37.136:9300"] #设置集群中master节点初始列表,可通过这些
节点自动发现新加入集群的节点,这里的9330端口,即为集群交互通信端口
discovery.zen.minimum_master_nodes: 1 #配置当前集群最少的master节点数,默认为1,也就是说,elasticsearch集群中master节点数不能低于次值>,
http.cors.enabled: true #表示开启跨域访问支持,默认为false
http.cors.allow-origin: "*" #表示跨域访问允许的域名地址,,可支持正则表达式,这里“*”表示允许所有域名访问
http.cors.allow-headers: "X-Requested-With,Content-Type, Content-Length, Authorization" #允许跨域访问头部信息

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值