1. 程式人生 > 實用技巧 >centos7 搭建Elasticsearch叢集

centos7 搭建Elasticsearch叢集

前提

準備3臺虛擬機器

192.168.174.144
192.168.174.145
192.168.174.146

按照下面方式把es給安裝起來
https://www.cnblogs.com/hardy-wang/p/13858783.html

1.進入192.168.174.144機器配置es核心配置檔案

1.1 開啟配置檔案

vim elasticsearch.yml

1.2 修改配置檔案

# 配置叢集名稱,保證每個節點的名稱相同,如此就能都處於一個叢集之內了
cluster.name: imooc-es-cluster
# 每一個節點的名稱,必須不一樣
node.name: es-node1
# http埠(使用預設即可)
http.port: 9200
# 主節點,作用主要是用於來管理整個叢集,負責建立或刪除索引,管理其他非master節點(相當於企業老總)
node.master: true
# 資料節點,用於對文件資料的增刪改查
node.data: true
# 叢集列表
discovery.seed_hosts: ["192.168.174.144", "192.168.174.145", "192.168.174.146"]
# 啟動的時候使用一個master節點
cluster.initial_master_nodes: ["es-node1"]

1.3 通過如下命令檢視配置檔案的內容:

more elasticsearch.yml | grep ^[^#]

下面分別是3臺機器配置


2.重啟3臺es