您好,登錄后才能下訂單哦!
這篇文章主要講解了“怎么在window下安裝elasticSearch7.9集群”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么在window下安裝elasticSearch7.9集群”吧!
一、軟件環(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é)點配置
# 設置集群名稱,集群內所有節(jié)點的名稱必須一致。 cluster.name: my-esCluster # 設置節(jié)點名稱,集群內節(jié)點名稱必須唯一。 node.name: node-9200 # 表示該節(jié)點會不會作為主節(jié)點,true表示會;false表示不會 node.master: true # 當前節(jié)點是否用于存儲數據,是:true、否:false node.data: true # 索引數據存放的位置 #path.data: /opt/elasticsearch/data # 日志文件存放的位置 #path.logs: /opt/elasticsearch/logs # 需求鎖住物理內存,是:true、否:false #bootstrap.memory_lock: true # 監(jiān)聽地址,用于訪問該es network.host: 127.0.0.1 # es對外提供的http端口,默認 9200 http.port: 9200 # TCP的默認監(jiān)聽端口,默認 9300 transport.tcp.port: 9300 # 設置這個參數來保證集群中的節(jié)點可以知道其它N個有master資格的節(jié)點。默認為1,對于大的集群來說,可以設置大一點的值(2-4) discovery.zen.minimum_master_nodes: 2 # es7.x 之后新增的配置,寫入候選主節(jié)點的設備地址,在開啟服務后可以被選為主節(jié)點 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 之后新增的配置,初始化一個新的集群時需要此配置來選舉master cluster.initial_master_nodes: ["node1", "node2", "node3"] # 是否支持跨域,是:true,在使用head插件時需要此配置 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é)點配置
# 設置集群名稱,集群內所有節(jié)點的名稱必須一致。 cluster.name: my-esCluster # 設置節(jié)點名稱,集群內節(jié)點名稱必須唯一。 node.name: node-9201 # 表示該節(jié)點會不會作為主節(jié)點,true表示會;false表示不會 node.master: true # 當前節(jié)點是否用于存儲數據,是:true、否:false node.data: true # 索引數據存放的位置 #path.data: /opt/elasticsearch/data # 日志文件存放的位置 #path.logs: /opt/elasticsearch/logs # 需求鎖住物理內存,是:true、否:false #bootstrap.memory_lock: true # 監(jiān)聽地址,用于訪問該es network.host: 127.0.0.1 # es對外提供的http端口,默認 9200 http.port: 9201 # TCP的默認監(jiān)聽端口,默認 9300 transport.tcp.port: 9301 # 設置這個參數來保證集群中的節(jié)點可以知道其它N個有master資格的節(jié)點。默認為1,對于大的集群來說,可以設置大一點的值(2-4) discovery.zen.minimum_master_nodes: 2 # es7.x 之后新增的配置,寫入候選主節(jié)點的設備地址,在開啟服務后可以被選為主節(jié)點 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 之后新增的配置,初始化一個新的集群時需要此配置來選舉master cluster.initial_master_nodes: ["node1", "node2", "node3"] # 是否支持跨域,是:true,在使用head插件時需要此配置 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é)點配置
# 設置集群名稱,集群內所有節(jié)點的名稱必須一致。 cluster.name: my-esCluster # 設置節(jié)點名稱,集群內節(jié)點名稱必須唯一。 node.name: node-9202 # 表示該節(jié)點會不會作為主節(jié)點,true表示會;false表示不會 node.master: true # 當前節(jié)點是否用于存儲數據,是:true、否:false node.data: true # 索引數據存放的位置 #path.data: /opt/elasticsearch/data # 日志文件存放的位置 #path.logs: /opt/elasticsearch/logs # 需求鎖住物理內存,是:true、否:false #bootstrap.memory_lock: true # 監(jiān)聽地址,用于訪問該es network.host: 127.0.0.1 # es對外提供的http端口,默認 9200 http.port: 9202 # TCP的默認監(jiān)聽端口,默認 9300 transport.tcp.port: 9302 # 設置這個參數來保證集群中的節(jié)點可以知道其它N個有master資格的節(jié)點。默認為1,對于大的集群來說,可以設置大一點的值(2-4) discovery.zen.minimum_master_nodes: 2 # es7.x 之后新增的配置,寫入候選主節(jié)點的設備地址,在開啟服務后可以被選為主節(jié)點 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 之后新增的配置,初始化一個新的集群時需要此配置來選舉master cluster.initial_master_nodes: ["node1", "node2", "node3"] # 是否支持跨域,是:true,在使用head插件時需要此配置 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
四、分別啟動三臺elasticSearch,啟動完成之后出現以下信息說明集群成功
五、安裝集群節(jié)點管理工具cerebro
解壓運行,在瀏覽器中輸入 http://localhost:9000
輸入節(jié)點地址
點擊Connect ,查看集群中的節(jié)點狀態(tài)
###一下內容和本文無關###
@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集群”的內容了,經過本文的學習后,相信大家對怎么在window下安裝elasticSearch7.9集群這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。