這篇文章主要講解了“怎么在window下安裝elasticSearch7.9集群”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“怎么在window下安裝elasticSearch7.9集群”吧!
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)建站!專注于網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、小程序定制開(kāi)發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了陽(yáng)朔免費(fèi)建站歡迎大家使用!
一、軟件環(huán)境
Win 10
elasticSearch 7.9.0
cerebro 0.9.2
二、軟件下載
elasticSearch 下載地址:https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.9.0-windows-x86_64.zip
cerebro 下載地址:https://github.com/lmenezes/cerebro/releases
三、解壓elasticSearch 7.9.0
3.1 node-9200節(jié)點(diǎn)配置
# 設(shè)置集群名稱,集群內(nèi)所有節(jié)點(diǎn)的名稱必須一致。 cluster.name: my-esCluster # 設(shè)置節(jié)點(diǎn)名稱,集群內(nèi)節(jié)點(diǎn)名稱必須唯一。 node.name: node-9200 # 表示該節(jié)點(diǎn)會(huì)不會(huì)作為主節(jié)點(diǎn),true表示會(huì);false表示不會(huì) node.master: true # 當(dāng)前節(jié)點(diǎn)是否用于存儲(chǔ)數(shù)據(jù),是:true、否:false node.data: true # 索引數(shù)據(jù)存放的位置 #path.data: /opt/elasticsearch/data # 日志文件存放的位置 #path.logs: /opt/elasticsearch/logs # 需求鎖住物理內(nèi)存,是:true、否:false #bootstrap.memory_lock: true # 監(jiān)聽(tīng)地址,用于訪問(wèn)該es network.host: 127.0.0.1 # es對(duì)外提供的http端口,默認(rèn) 9200 http.port: 9200 # TCP的默認(rèn)監(jiān)聽(tīng)端口,默認(rèn) 9300 transport.tcp.port: 9300 # 設(shè)置這個(gè)參數(shù)來(lái)保證集群中的節(jié)點(diǎn)可以知道其它N個(gè)有master資格的節(jié)點(diǎn)。默認(rèn)為1,對(duì)于大的集群來(lái)說(shuō),可以設(shè)置大一點(diǎn)的值(2-4) discovery.zen.minimum_master_nodes: 2 # es7.x 之后新增的配置,寫(xiě)入候選主節(jié)點(diǎn)的設(shè)備地址,在開(kāi)啟服務(wù)后可以被選為主節(jié)點(diǎn) discovery.seed_hosts: ["127.0.0.1:9300", "127.0.0.1:9301", "127.0.0.1:9302"] discovery.zen.fd.ping_timeout: 1m discovery.zen.fd.ping_retries: 5 # es7.x 之后新增的配置,初始化一個(gè)新的集群時(shí)需要此配置來(lái)選舉master cluster.initial_master_nodes: ["node1", "node2", "node3"] # 是否支持跨域,是:true,在使用head插件時(shí)需要此配置 http.cors.enabled: true # “*” 表示支持所有域名 http.cors.allow-origin: "*" action.destructive_requires_name: true action.auto_create_index: .security,.monitoring*,.watches,.triggered_watches,.watcher-history* xpack.security.enabled: false xpack.monitoring.enabled: true xpack.graph.enabled: false xpack.watcher.enabled: false xpack.ml.enabled: false
3.1 node-9201節(jié)點(diǎn)配置
# 設(shè)置集群名稱,集群內(nèi)所有節(jié)點(diǎn)的名稱必須一致。 cluster.name: my-esCluster # 設(shè)置節(jié)點(diǎn)名稱,集群內(nèi)節(jié)點(diǎn)名稱必須唯一。 node.name: node-9201 # 表示該節(jié)點(diǎn)會(huì)不會(huì)作為主節(jié)點(diǎn),true表示會(huì);false表示不會(huì) node.master: true # 當(dāng)前節(jié)點(diǎn)是否用于存儲(chǔ)數(shù)據(jù),是:true、否:false node.data: true # 索引數(shù)據(jù)存放的位置 #path.data: /opt/elasticsearch/data # 日志文件存放的位置 #path.logs: /opt/elasticsearch/logs # 需求鎖住物理內(nèi)存,是:true、否:false #bootstrap.memory_lock: true # 監(jiān)聽(tīng)地址,用于訪問(wèn)該es network.host: 127.0.0.1 # es對(duì)外提供的http端口,默認(rèn) 9200 http.port: 9201 # TCP的默認(rèn)監(jiān)聽(tīng)端口,默認(rèn) 9300 transport.tcp.port: 9301 # 設(shè)置這個(gè)參數(shù)來(lái)保證集群中的節(jié)點(diǎn)可以知道其它N個(gè)有master資格的節(jié)點(diǎn)。默認(rèn)為1,對(duì)于大的集群來(lái)說(shuō),可以設(shè)置大一點(diǎn)的值(2-4) discovery.zen.minimum_master_nodes: 2 # es7.x 之后新增的配置,寫(xiě)入候選主節(jié)點(diǎn)的設(shè)備地址,在開(kāi)啟服務(wù)后可以被選為主節(jié)點(diǎn) discovery.seed_hosts: ["127.0.0.1:9300", "127.0.0.1:9301", "127.0.0.1:9302"] discovery.zen.fd.ping_timeout: 1m discovery.zen.fd.ping_retries: 5 # es7.x 之后新增的配置,初始化一個(gè)新的集群時(shí)需要此配置來(lái)選舉master cluster.initial_master_nodes: ["node1", "node2", "node3"] # 是否支持跨域,是:true,在使用head插件時(shí)需要此配置 http.cors.enabled: true # “*” 表示支持所有域名 http.cors.allow-origin: "*" action.destructive_requires_name: true action.auto_create_index: .security,.monitoring*,.watches,.triggered_watches,.watcher-history* xpack.security.enabled: false xpack.monitoring.enabled: true xpack.graph.enabled: false xpack.watcher.enabled: false xpack.ml.enabled: false
3.1 node-9202節(jié)點(diǎn)配置
# 設(shè)置集群名稱,集群內(nèi)所有節(jié)點(diǎn)的名稱必須一致。 cluster.name: my-esCluster # 設(shè)置節(jié)點(diǎn)名稱,集群內(nèi)節(jié)點(diǎn)名稱必須唯一。 node.name: node-9202 # 表示該節(jié)點(diǎn)會(huì)不會(huì)作為主節(jié)點(diǎn),true表示會(huì);false表示不會(huì) node.master: true # 當(dāng)前節(jié)點(diǎn)是否用于存儲(chǔ)數(shù)據(jù),是:true、否:false node.data: true # 索引數(shù)據(jù)存放的位置 #path.data: /opt/elasticsearch/data # 日志文件存放的位置 #path.logs: /opt/elasticsearch/logs # 需求鎖住物理內(nèi)存,是:true、否:false #bootstrap.memory_lock: true # 監(jiān)聽(tīng)地址,用于訪問(wèn)該es network.host: 127.0.0.1 # es對(duì)外提供的http端口,默認(rèn) 9200 http.port: 9202 # TCP的默認(rèn)監(jiān)聽(tīng)端口,默認(rèn) 9300 transport.tcp.port: 9302 # 設(shè)置這個(gè)參數(shù)來(lái)保證集群中的節(jié)點(diǎn)可以知道其它N個(gè)有master資格的節(jié)點(diǎn)。默認(rèn)為1,對(duì)于大的集群來(lái)說(shuō),可以設(shè)置大一點(diǎn)的值(2-4) discovery.zen.minimum_master_nodes: 2 # es7.x 之后新增的配置,寫(xiě)入候選主節(jié)點(diǎn)的設(shè)備地址,在開(kāi)啟服務(wù)后可以被選為主節(jié)點(diǎn) discovery.seed_hosts: ["127.0.0.1:9300", "127.0.0.1:9301", "127.0.0.1:9302"] discovery.zen.fd.ping_timeout: 1m discovery.zen.fd.ping_retries: 5 # es7.x 之后新增的配置,初始化一個(gè)新的集群時(shí)需要此配置來(lái)選舉master cluster.initial_master_nodes: ["node1", "node2", "node3"] # 是否支持跨域,是:true,在使用head插件時(shí)需要此配置 http.cors.enabled: true # “*” 表示支持所有域名 http.cors.allow-origin: "*" action.destructive_requires_name: true action.auto_create_index: .security,.monitoring*,.watches,.triggered_watches,.watcher-history* xpack.security.enabled: false xpack.monitoring.enabled: true xpack.graph.enabled: false xpack.watcher.enabled: false xpack.ml.enabled: false
四、分別啟動(dòng)三臺(tái)elasticSearch,啟動(dòng)完成之后出現(xiàn)以下信息說(shuō)明集群成功
五、安裝集群節(jié)點(diǎn)管理工具cerebro
解壓運(yùn)行,在瀏覽器中輸入 http://localhost:9000
輸入節(jié)點(diǎn)地址
點(diǎn)擊Connect ,查看集群中的節(jié)點(diǎn)狀態(tài)
###一下內(nèi)容和本文無(wú)關(guān)###
@Configuration public class ElasticConfig extends AbstractElasticsearchConfiguration { @Value("${elasticSearch.host.port}") private String hostAndPort; @Value("${elasticSearch.user}") private String user; @Value("${elasticSearch.password}") private String password; @Value("${elasticSearch.socketTimeout}") private long socketTimeout; @Override @Bean public RestHighLevelClient elasticsearchClient() { final ClientConfiguration clientConfiguration = ClientConfiguration.builder() .connectedTo(hostAndPort) .withBasicAuth(user, password) .withSocketTimeout(Duration.ofSeconds(socketTimeout)) .build(); return RestClients.create(clientConfiguration).rest(); } @Bean public ElasticsearchRestTemplate restTemplate() throws Exception { return new ElasticsearchRestTemplate(elasticsearchClient()); } }
感謝各位的閱讀,以上就是“怎么在window下安裝elasticSearch7.9集群”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)怎么在window下安裝elasticSearch7.9集群這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
網(wǎng)站題目:怎么在window下安裝elasticSearch7.9集群
網(wǎng)站路徑:http://jinyejixie.com/article20/pgggco.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供企業(yè)建站、網(wǎng)站制作、網(wǎng)站排名、定制開(kāi)發(fā)、小程序開(kāi)發(fā)、ChatGPT
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
移動(dòng)網(wǎng)站建設(shè)知識(shí)