码迷,mamicode.com
首页 > 其他好文 > 详细

同一台机器配置两个elasticsearch7.6.2实例

时间:2020-05-17 17:51:52      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:-o   clust   ble   width   版本   map   last   mamicode   forward   

使用软件版本:elasticsearch7.6.2

配置运行环境更改系统参数:

  1.  vim /etc/security/limits.conf
  2.  * soft nofile 65537
  3.  * hard nofile 65537
  4.  * soft nproc 65537
  5.  * hard nproc 65537 
  6.  vim /etc/sysctl.conf
  7.  vm.max_map_count = 262144
  8.  net.core.somaxconn = 65535
  9.  net.ipv4.ip_forward = 1

#1

cluster.name: my-application
node.name: node-1
node.master: true
node.data: true
path.data: /opt/es/forlinux7/es7-1/data
path.logs: /opt/es/forlinux7/es7-1/logs
network.host: 0.0.0.0
http.port: 9200
transport.port: 9300
discovery.seed_hosts: ["106.54.110.*:9300", "106.54.110.*:9301"]
cluster.initial_master_nodes: ["node-1"]
http.cors.enabled: true
http.cors.allow-origin: "*"

#2

cluster.name: my-application
node.name: node-2
node.master: false
node.data: true
path.data: /opt/es/forlinux7/es7-2/data
path.logs: /opt/es/forlinux7/es7-2/logs
network.host: 106.54.110.35
http.port: 9201
transport.port: 9301
discovery.seed_hosts: ["106.54.110.*:9300", "106.54.110.*:9301"]
cluster.initial_master_nodes: ["node-1", "node-2"]
http.cors.enabled: true
http.cors.allow-origin: "*"

技术图片

同一台机器配置两个elasticsearch7.6.2实例

标签:-o   clust   ble   width   版本   map   last   mamicode   forward   

原文地址:https://www.cnblogs.com/abthenzxy/p/12905789.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!