elasticsearch 7 单机配置

elasticsearch 7.0.0 新版更新,填个坑node

单机部署提示:docker

error1:跨域

[cluster.initial master nodes] is empty on this nodebash

error:2cors

the default discovery settings are unsuitable for production use; at least one of [discovery.seed_hosts, discovery.seed_providers, cluster.initial_master_nodes] must be configuredelasticsearch

正确配置ide

vi /usr/share/elasticsearch/config/elasticsearch.yml工具

cluster.name: "docker-cluster"
network.host: 0.0.0.0


# custom config
node.name: "node-1"
discovery.seed_hosts: ["127.0.0.1", "[::1]"]
cluster.initial_master_nodes: ["node-1"]
# 开启跨域访问支持,默认为false
http.cors.enabled: true
# 跨域访问容许的域名地址,(容许全部域名)以上使用正则
http.cors.allow-origin: /.*/ 
复制代码

重点是 node.namecluster.initial_master_nodespost

原文地址:www.holdlg.com/post/elasti…ui

推荐个在线网页截图工具: www.zshua.cc

相关文章
相关标签/搜索