博客
关于我
se 集群的搭建
阅读量:403 次
发布时间:2019-03-05

本文共 1207 字,大约阅读时间需要 4 分钟。

1.1  es伪分布式集群搭建

     Es会自动发现同一网段下的es,配置成相同集群名字的各个节点形成一个集群。如果在同一网段下有多个集群,就可以用culster.name来区分不同的集群。

1.下载es软件包,修改配置文件。本案例使用2.0版本,放到e盘下,如图

 

简单修改elasticsearch.yml配置文件的内容:(确保keyvalue的前面都有一个空格,即cluster.nameesclutertest的前面都得有一个空格

cluster.name:esclustertest  #默认是elasticsearch,修改节点名称

node.name: node-1    //节点名称

http.port: 9200        //访问端口号

以上只是简单对配置文件做了一下配置,根据自己的需要,其他一些参数自行配置。

2.e盘下的es整个软件包,复制到f,修改elasticsearch.yml配置文件

 

 

 

cluster.name:esclustertest  #默认是elasticsearch

node.name: node-2

http.port: 19200

 

3.分别启动这两个es,运行结果:

1.2  es分布式集群搭建

1.      背景前提:

Es会自动发现同一网段下的es,配置成相同集群名字的各个节点形成一个集群。如果在同一网段下有多个集群,就可以用culster.name来区分不同的集群。

2.      主节点的配置:假设此台机器的ip192.168.2.120,修改elasticsearch.yml配置文件(确保keyvalue的前面都有一个空格,即cluster.nameesclutertest的前面都得有一个空格

cluster.name: esclustertest #默认是elasticsearch

node.name: node-1

http.port: 9200

network.host: 192.168.2.120

network.publish_host: 192.168.2.120

 node.master:true

3.      拷贝此台此机器上的es的软件包到192.168.2.144这台机器上,修改elasticsearch.yml配置文件

cluster.name: esclustertest #默认是elasticsearch

node.name: node-2

http.port: 9200

network.host: 192.168.2.120

network.publish_host: 192.168.2.120

node.master: false

discovery.zen.ping.unicast.hosts: ["192.168.2.144"]  

4.      启动两个节点:并从192.168.2.12 0节点添加数据后,在每个节点的数据结果图:

 

 

 

 

参考网址:

 

 

你可能感兴趣的文章
nnU-Net 终极指南
查看>>
No 'Access-Control-Allow-Origin' header is present on the requested resource.
查看>>
NO 157 去掉禅道访问地址中的zentao
查看>>
no available service ‘default‘ found, please make sure registry config corre seata
查看>>
No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
查看>>
no connection could be made because the target machine actively refused it.问题解决
查看>>
No Datastore Session bound to thread, and configuration does not allow creation of non-transactional
查看>>
No fallbackFactory instance of type class com.ruoyi---SpringCloud Alibaba_若依微服务框架改造---工作笔记005
查看>>
No Feign Client for loadBalancing defined. Did you forget to include spring-cloud-starter-loadbalanc
查看>>
No mapping found for HTTP request with URI [/...] in DispatcherServlet with name ...的解决方法
查看>>
No mapping found for HTTP request with URI [/logout.do] in DispatcherServlet with name 'springmvc'
查看>>
No module named 'crispy_forms'等使用pycharm开发
查看>>
No module named cv2
查看>>
No module named tensorboard.main在安装tensorboardX的时候遇到的问题
查看>>
No module named ‘MySQLdb‘错误解决No module named ‘MySQLdb‘错误解决
查看>>
No new migrations found. Your system is up-to-date.
查看>>
No qualifying bean of type XXX found for dependency XXX.
查看>>
No qualifying bean of type ‘com.netflix.discovery.AbstractDiscoveryClientOptionalArgs<?>‘ available
查看>>
No resource identifier found for attribute 'srcCompat' in package的解决办法
查看>>
no session found for current thread
查看>>