安裝elasticsearch7

搭建 Elasticsearch7node

一:環境:linux

OS:CentOS Linux release 7.9.2009 (Core)elasticsearch

ES版本:7.12.0ide

二:軟件下載:內存

軟件下載地址:https://www.elastic.co/cn/downloads/elasticsearch get

下載後的軟件包名:elasticsearch-7.12.0-linux-x86_64.tar.gzit

注:es7之後自帶了OpenJDKast

三:配置環境信息class

1:變配虛擬內存,修改配置文件:/etc/sysctl.conf 添加以下內容test

vm.max_map_count=655360


2:建立ES使用的帳戶,默認狀況下啓動ES不能使用root啓動

useradd es  #不須要建立密碼,能夠使用root 切換過去

四:下載軟件包、解壓、變動權限

1:解壓到/opt 目錄下:

tar -zxvf elasticsearch-7.12.0-linux-x86_64.tar.gz -C /opt

2:變動權限:

cd /opt

root chown es.root elasticsearch-7.12.0/ -R

五:修改elasticsearch的配置文件

1:建立數據目錄:

mkdir /opt/elasticsearch-7.12.0/data

2:進入目錄修改文件

cd /opt/elasticsearch-7.12.0/config

建議首先備份配置文件:elasticsearch.yml

node.name: node-dev-test

path.data: /opt/elasticsearch-7.12.0/data

path.logs: /opt/elasticsearch-7.12.0/logs

network.host: 0.0.0.0

discovery.seed_hosts: ["0.0.0.0"]

相關文章
相關標籤/搜索