首页 > 代码库 > Elasticsearch 5.2.1Cluster 搭建

Elasticsearch 5.2.1Cluster 搭建

1.安装java

  • cd ~
  • wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/8u73-b02/jdk-8u73-linux-x64.rpm"

2.安装elasticsearch:

       现在一台机器上解压:

        tar zxvf elasticsearch-5.2.1.tar.gz

        修改配置文件:

   network.host:对应机器的ip

   cluster.name: production

         node.name: ${HOSTNAME}

         discovery.zen.ping.unicast.hosts: ["node01", "node02", "node03"]

          保存启动

          配置好的直接拷贝到另外两台机器记得修改ip

3.检查:curl -XGET ‘http://localhost:9200/_cluster/state?pretty‘

成功:

技术分享

4.相关配置:

启用内存锁定:

bootstrap.mlockall: true

 计算集群节点的文档数量

 

 

 

Elasticsearch 5.2.1Cluster 搭建