您好,登錄后才能下訂單哦!
環(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.name: Asy
node.name: node-1
path.data: /opt/module/elasticsearch-5.2.2/data
path.logs: /opt/module/elasticsearch-5.2.2/logs
bootstrap.memory_lock: false
bootstrap.system_call_filter: false
network.host: hdp21
http.port: 9200
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)容:
退回到上一級目錄
并執(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
Google瀏覽器調(diào)試Elastic Search
打開更多工具,擴展程序并且打開開發(fā)者模式
將elasticsearch-head.crx拖入瀏覽器窗口成功完成插件的安裝
輸入http://192.168.234.21:9200/
其中192.168.234.21為linux主機的IP地址,9200為端口號
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。