当前位置:   article > 正文

Es集群搭建_es 搭建3集群

es 搭建3集群

1 服务器准备

  1. [root@localhost ~]# cat /etc/redhat-release
  2. CentOS Linux release 7.8.2003 (Core)

   准备三台服务器, 我准备的三台服务器IP为10.13.49.44、10.13.49.98、10.13.49.110,操作系统版本如上图

2 ES版本下载

    下载地址为https://www.elastic.co/cn/downloads/past-releases#elasticsearch

     我下载的版本是:elasticsearch-analysis-ik-6.8.12.zip,没选择太新的版本是因为当前版本是jdk8支持的最后一个版本且能满足我的需求

3 集群配置

3.1 解压

  1. cd /home
  2. tar -zvxf elasticsearch-6.8.12.tar.gz

3.2 添加用户

  1. groupadd es
  2. adduser es -g es
  3. chown -R es:es /home/elasticsearch-6.8.12

3.3 系统内核配置

  1. vi /etc/sysctl.conf 添加如下内容
  2. vm.max_map_count=262144

3.4 最大线程数设置

  1. vi /etc/security/limits.conf 添加如下内容
  2. * soft nofile 65536
  3. * hard nofile 65536
  4. * soft nproc 4096
  5. * hard nproc 4096

3.5 elasticsearch.yaml配置

  1. cluster.name: escluster
  2. #节点名称,仅仅是描述名称,用于在日志中区分,不能重复
  3. node.name: 10.13.49.98
  4. #配置data和logs的目录,我这里放到了根目录下的data和logs中
  5. path.data: /home/elasticsearch-6.8.12/data
  6. path.logs: /home/elasticsearch-6.8.12/logs
  7. #当前节点的IP地址
  8. network.host: 10.13.49.98
  9. #对外提供服务的端口
  10. http.port: 9200
  11. #为了避免脑裂,集群节点数最少为半数+1
  12. discovery.zen.minimum_master_nodes: 2
  13. #自动发现ping其他节点超时时间
  14. discovery.zen.ping_timeout: 3s
  15. #集群各节点IP地址,其中9300为集群服务的默认端口
  16. discovery.zen.ping.unicast.hosts: ["10.13.49.44:9300","10.13.49.98:9300","10.13.49.110:9300"]

配置文件中如没有对应目录需手动创建,其它两个节点同理

3.6 启动所有节点Es

  1. /home/elasticsearch-6.8.12/bin
  2. ./elasticsearch

3.7 验证Es启动成功

  1. [root@localhost config]# curl 10.13.49.44:9300/_cat/nodes?v
  2. This is not an HTTP port[root@localhost config]# curl 10.13.49.44:9200/_cat/nodes?v
  3. ip heap.percent ram.percent cpu load_1m load_5m load_15m node.role master name
  4. 10.13.49.44 76 61 0 0.01 0.04 0.05 mdi * 10.13.49.44
  5. 10.13.49.110 58 63 0 0.00 0.03 0.05 mdi - 10.13.49.110
  6. 10.13.49.98 60 58 0 0.00 0.01 0.05 mdi - 10.13.49.98

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/166334
推荐阅读
相关标签
  

闽ICP备14008679号