您好,登錄后才能下訂單哦!
此文檔針對es在centos7環(huán)境3節(jié)點部署,3節(jié)點ip分別為:172.16.10.102.172.16.10.103,172.16.10.104
一、增加host
每個節(jié)點下增加host配置
172.16.10.102 HadoopMaster
172.16.10.103 HadoopSlave1
172.16.10.104 HadoopSlave2
二、然后下載es安裝包
cd /opt wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.4.0.tar.gz
三、解壓es安裝包
tar -zxvf elasticsearch-6.4.0.tar.gz
四、編輯es配置文件(master配置如下,其他2個slave修改node.master:false即可)
vim config/elasticsearch.yml
network.host: 0.0.0.0
discovery.zen.ping_timeout: 120s
client.transport.ping_timeout: 60s
discovery.zen.ping.unicast.hosts: ["172.16.10.102","172.16.10.103", "172.16.10.104"]
cluster.name: escluster
node.name: HadoopMaster
path.data: /opt/elasticsearch-6.4.0/data
path.logs: /opt/elasticsearch-6.4.0/datalog
node.master: true
node.data: true
node.attr.rack: r1
bootstrap.memory_lock: true
bootstrap.system_call_filter: false
http.port: 9200
http.cors.enabled: true
http.cors.allow-origin: "*"
五、修改系統(tǒng)參數(shù)
vim /etc/security/limits.conf
新增
安裝nodejs環(huán)境
yum -y install nodejs
cd elasticsearch-head/
npm install
npm install -g grunt-cli
grunt server &
Open http://localhost:9100
(如果提示報錯phantomjs-prebuilt@2.1.16 install: node install.js
)
npm install phantomjs-prebuilt@2.1.16 --ignore-scripts 即可
重新啟動es程序。
打開網(wǎng)頁:http://172.16.10.102:9100(如果head的9200連接不上,檢查配置文件的http.cors.enabled: true
http.cors.allow-origin: "*" 是否配置)
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。