溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ElasticSearch單節(jié)點模式的搭建

發(fā)布時間:2020-06-25 09:23:07 來源:網(wǎng)絡 閱讀:2502 作者:asdud 欄目:大數(shù)據(jù)

環(huán)境CentOS7
安裝了JDK1.8
這里用的elasticsearch6.2.2為例,你也可以用5.6.1或者更高的版本

1.最好以非root用戶解壓ElasticSearch,如果用root用戶,要不然以后還要將文件的權(quán)限以及組轉(zhuǎn)移給非foot用戶
1)解壓elasticsearch-5.2.2.tar.gz到/opt/module目錄下
[root@hdp21 ~]# su asy
[asy@hdp21 root]$ tar -zxvf elasticsearch-5.2.2.tar.gz -C /opt/module
2)在/opt/module/elasticsearch-5.2.2路徑下創(chuàng)建data和logs文件夾
mkdir data
mkdir logs

如果你用root賬號,請先添加一個非root賬號,因為elaticsearch不能用root賬號運行
user add asy
chown -R asy:asy /opt/module/elasticsearch-5.2.2/

3)root賬號修改配置文件/opt/module/elasticsearch-5.2.2/config/elasticsearch.yml
[root@hdp21 config]# pwd
/opt/module/elasticsearch-5.2.2/config
[root@hdp21 config]# vi elasticsearch.yml
修改以下參數(shù)

---------------------------------- Cluster -------------------------------------

cluster.name: Asy

------------------------------------ Node --------------------------------------(三個不能一樣)

node.name: node-1

----------------------------------- Paths ---------------------------------------

path.data: /opt/module/elasticsearch-5.2.2/data
path.logs: /opt/module/elasticsearch-5.2.2/logs

----------------------------------- Memory -----------------------------------

bootstrap.memory_lock: false
bootstrap.system_call_filter: false

---------------------------------- Network ------------------------------------

network.host: hdp21
http.port: 9200

--------------------------------- Discovery ------------------------------------

discovery.zen.ping.unicast.hosts: ["hdp21"]

path.data
path.logs data和logs的路徑

network.host ip地址或者host域名地址
http.port端口號

5)配置linux系統(tǒng)環(huán)境(參考:
(1)編輯limits.conf 添加類似如下內(nèi)容
[root@hdp21 config]# vi /etc/security/limits.conf
添加如下內(nèi)容:

  • soft nofile 65536
  • hard nofile 131072
  • soft nproc 2048
  • hard nproc 4096
    (2)進入limits.d目錄下修改配置文件。
    [root@hdp21 config]# vi /etc/security/limits.d/20-nproc.conf
    修改如下內(nèi)容:如果超過2048則不用修改
  • soft nproc 1024
    #修改為
  • soft nproc 2048
    (3)修改配置sysctl.conf
    [root@hdp21 config]# vi /etc/sysctl.conf
    添加下面配置:
    vm.max_map_count=655360

退回到上一級目錄
并執(zhí)行命令:
[root@hdp21 config]# cd ..
[root@hdp21 elasticsearch-5.2.2]# pwd
/opt/module/elasticsearch-5.2.2

[root@hdp21 elasticsearch-5.2.2]# sysctl -p
然后,重新啟動elasticsearch,即可啟動成功。
6)啟動elasticsearch
[asy@hdp21 elasticsearch-5.2.2]$ bin/elasticsearch
后臺啟動方式
[asy@hdp21 elasticsearch-5.2.2]$ bin/elasticsearch-d
7)測試elasticsearch
[root@hdp21 ~]# curl http://hdp21:9200
{
"name" : "node1",
"cluster_name" : "Asy",
"cluster_uuid" : "8T7xJ-NLTbmYHOPKa3a4tA",
"version" : {
"number" : "5.2.2",
"build_hash" : "f9d9b74",
"build_date" : "2017-02-24T17:26:45.835Z",
"build_snapshot" : false,
"lucene_version" : "6.4.1"
},
"tagline" : "You Know, for Search"
}

執(zhí)行bin/elasticsearch的時候
如果有 max file descriptors [4096] for elasticsearch process is too low, increase to at least [65536] 的報錯

這個對應v/etc/security/limits.conf

  • soft nofile 65536
    已經(jīng)修改了,怎么不生效呢?
    重新進入該非 root user即可

Google瀏覽器調(diào)試Elastic Search
打開更多工具,擴展程序并且打開開發(fā)者模式
將elasticsearch-head.crx拖入瀏覽器窗口成功完成插件的安裝
輸入http://192.168.234.21:9200/
其中192.168.234.21為linux主機的IP地址,9200為端口號
ElasticSearch單節(jié)點模式的搭建

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI