Elasticsearch 클러스터 설치 배포

2004 단어 elasticsearch
Elasticsearch 버전
rpm -ivh elasticsearch-6.8.3.rpm

폴더 만들기
mkdir /usr/share/elasticsearch/data
mkdir /usr/share/elasticsearch/logs

보안 문제로 인해 Elasticsearch는 루트 사용자를 직접 실행하지 못하게 하기 때문에 새 사용자를 만듭니다.
 
adduser es
 
passwd es
 es 
chown -R es:es *

elasticsearch를 수정합니다.yml 파일
#vi /etc/elasticsearch/elasticsearch.yml
---------------------------------- Cluster -----------------------------------
cluster.name: es_cluster
------------------------------------ Node ------------------------------------
node.name: node_1
#----------------------------------- Paths ------------------------------------
path.data: /usr/share/elasticsearch/data
path.logs: /usr/share/elasticsearch/logs
#----------------------------------- Memory -----------------------------------
network.host: 0.0.0.0
http.port: 9200
transport.tcp.port: 9300
#--------------------------------- Discovery ----------------------------------
discovery.zen.ping.unicast.hosts: ["10.2.15.183", "10.2.15.169", "10.2.15.186"]
discovery.zen.minimum_master_nodes: 2
gateway.recover_after_nodes: 2
#---------------------------------- Various -----------------------------------
node.master: true
node.data: true
http.cors.enabled: true
http.cors.allow-origin: "*"

수정 jvm.옵션 파일
vi /etc/elasticsearch/jvm.options
-Xms4g
-Xmx4g

제한을 수정합니다.conf 파일
vi /etc/security/limits.conf
* soft nofile 65536
* hard nofile 131072
* soft nproc 4096
* hard nproc 4096

sysctl을 수정합니다.conf 파일
vi /etc/sysctl.conf
vm.max_map_count=655360

/elasticsearch를 다른 두 서버hadoop2,hadoop3에 보내기
scp -r /usr/local/elasticsearch hadoop2:/usr/local
scp -r /usr/local/elasticsearch hadoop3:/usr/local

es 사용자로 전환하고 시작
su es
bin/elasticsearch

브라우저로 es가 있는 기계의 9200 포트에 접근합니다http://hadoop1:9200

좋은 웹페이지 즐겨찾기