elasticsearch 单机部署,脱离集群,elasticsearch集群
安装好elasticsearch后,默认是会将同一网段的所有cluster.name相同的索引,都能搜索到,
但是在开发环境下,测试用的elasticsearch不应该到集群中,只应在单机显示,
解决方法:
在elasticsearch文件夹下,修改config文件夹下elasticsearch.yml文件:
默认设置:
#cluster.name: elasticsearch
改为:
cluster.name: elasticsearch_csi
默认设置:
# Note, that for development on a local machine, with small indices, it usually
# makes sense to "disable" the distributed features:
#
#index.number_of_shards: 1
#index.number_of_replicas: 0
改为:
index.number_of_shards: 1
index.number_of_replicas: 0
取消注释。
以上2个属性会禁用分布式,这两个属性的设置直接影响集群中索引和搜索操作的执行
本站文章为和通数据库网友分享或者投稿,欢迎任何形式的转载,但请务必注明出处.
同时文章内容如有侵犯了您的权益,请联系QQ:970679559,我们会在尽快处理。