溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Docker怎么部署ElasticSearch集群

發(fā)布時(shí)間:2021-07-28 11:51:41 來源:億速云 閱讀:169 作者:chen 欄目:云計(jì)算

本篇內(nèi)容介紹了“Docker怎么部署ElasticSearch集群 ”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

1.前言

為什么要用ElasticSearch?我們的應(yīng)用經(jīng)常需要添加檢索功能,開源的Elastic Search是目前全文檢索引擎的首選。它可以快速的存儲(chǔ)、搜索和分析海量數(shù)據(jù)。ElasticSearch是一個(gè)分布式搜索框架,提供RestfulAPI,底層基于Lucene,采用多shard(分片)的方式保證數(shù)據(jù)安全,并且提供自動(dòng)resharding的功能。
Elasticsearch: 權(quán)威指南(中文):https://www.elastic.co/guide/cn/elasticsearch/guide/current/index.html

2.拉取ElasticSearch鏡像

在centos窗口中,執(zhí)行如下命令:

docker pull elasticsearch:5.6.8

當(dāng)前ES鏡像版本信息:

 { "name" : "WlwFyqU", "cluster_name" : "elasticsearch", "cluster_uuid" : "78UDZtviQqiWmzmenGpSrQ", "version" : { "number" : "5.6.8", "build_hash" : "cfe3d9f", "build_date" : "2018-09-10T20:12:43.732Z", "build_snapshot" : false, "lucene_version" : "6.6.1" }, "tagline" : "You Know, for Search" }

3.創(chuàng)建數(shù)據(jù)掛在目錄,以及配置ElasticSearch集群配置文件

3.1.創(chuàng)建數(shù)據(jù)文件掛載目錄,并開放通信端口

在centos窗口中,執(zhí)行如下操作:

[root@localhost soft]# pwd/root/soft[root@localhost soft]# mkdir -p ES/config[root@localhost soft]# cd ES [root@localhost ES]# mkdir data1[root@localhost ES]# mkdir data2[root@localhost ES]# mkdir data3[root@localhost ES]# cd ES/config/[root@localhost ES]# firewall-cmd --add-port=9300/tcpsuccess[root@localhost ES]# firewall-cmd --add-port=9301/tcpsuccess[root@localhost ES]# firewall-cmd --add-port=9302/tcpsuccess

注:如果ELK選的6.X版本的,且非管理員,那么讀者需將data1 data2 data3 開啟777權(quán)限=> chmod 777 data1 data2 data3

3.2.創(chuàng)建ElasticSearch配置文件

在centos窗口中,使用vim命令分別創(chuàng)建如下文件:es1.yml,es2.yml,es3.yml

es1.yml

cluster.name: my-elasticsearchnode.name: es-node1network.bind_host: 0.0.0.0network.publish_host: 192.168.70.129http.port: 9200transport.tcp.port: 9300http.cors.enabled: truehttp.cors.allow-origin: "*"node.master: true node.data: true discovery.zen.ping.unicast.hosts: ["192.168.70.129:9300","192.168.70.129:9301","192.168.70.129:9302"]discovery.zen.minimum_master_nodes: 2

es2.yml

cluster.name: my-elasticsearchnode.name: es-node2network.bind_host: 0.0.0.0network.publish_host: 192.168.70.129http.port: 9201transport.tcp.port: 9301http.cors.enabled: truehttp.cors.allow-origin: "*"node.master: true node.data: true discovery.zen.ping.unicast.hosts: ["192.168.70.129:9300","192.168.70.129:9301","192.168.70.129:9302"]discovery.zen.minimum_master_nodes: 2

es3.yml

cluster.name: my-elasticsearchnode.name: es-node3network.bind_host: 0.0.0.0network.publish_host: 192.168.70.129http.port: 9202transport.tcp.port: 9302http.cors.enabled: truehttp.cors.allow-origin: "*"node.master: true node.data: true discovery.zen.ping.unicast.hosts: ["192.168.70.129:9300","192.168.70.129:9301","192.168.70.129:9302"]discovery.zen.minimum_master_nodes: 2

注:本機(jī)虛擬機(jī)ip:192.168.70.129 讀者請(qǐng)自行更改

3.3.調(diào)高JVM線程數(shù)限制數(shù)量

在centos窗口中,修改配置sysctl.conf

vim /etc/sysctl.conf

加入如下內(nèi)容:

vm.max_map_count=262144

啟用配置:

sysctl -p

“Docker怎么部署ElasticSearch集群 ”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問一下細(xì)節(jié)

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

AI