【es】es配置文件elasticsearch.yml
2021-10-21 本文已影响0人
Bogon
# cat elasticsearch.yml
##########################################################
cluster.name: test
node.name: 172.16.6.204
bootstrap.memory_lock: true
bootstrap.system_call_filter: false
thread_pool.bulk.queue_size: 2000
network.host: 0.0.0.0
network.publish_host: 172.16.6.204
http.port: 9200
transport.tcp.port: 9300
http.cors.enabled: true
http.cors.allow-origin: '*'
discovery.zen.ping.unicast.hosts: ['172.16.6.223:9300', '172.16.6.125:9300', '172.16.6.204:9300']
###################################################################
如果没有在配置文件中显式声明es节点角色,默认同时是mdi(master/data/ingest) 三种角色。