windows平台elasticsearch8.9配置文件,无密码

cluster.name: my-elasticsearch
# 其他节点是node-2,node-3
node.name: node-1
node.roles: [master,data]
network.host: 0.0.0.0
# 其他节点是92029203
http.port: 9201
# 其他节点是93029303
transport.port: 9301
discovery.seed_hosts: ["192.168.0.143:9301","192.168.0.143:9302","192.168.0.143:9303"]
cluster.initial_master_nodes: ["node-1","node-2","node-3"]
gateway.recover_after_data_nodes: 3
action.destructive_requires_name: false
http.cors.enabled: true
http.cors.allow-origin: "*"
http.cors.allow-credentials: true
http.cors.allow-headers: X-Requested-With, X-Auth-Token, Content-Type, Content-Length, Authorization, Access-Control-Allow-Headers, Accept
indices.fielddata.cache.size: 20%
xpack.security.enabled: false

你可能感兴趣的:(windows)