1. 程式人生 > >ElasticSearch集群本機搭建

ElasticSearch集群本機搭建

查詢方式 OS port oca clust sta arc pat 集群

ElasticSearch集群本機搭建

elasticsearch

elasticsearch -Ehttp.port=8200 -Epath.data=node2

elasticsearch -Ehttp.port=7200 -Epath.data=node3

就啟動了3個節點;

查看三個節點的信息:

http://localhost:9200/

http://localhost:8200/

http://localhost:7200/

查看集群信息:

http://localhost:9200/_cat/ 可以有N多種查詢方式

http://localhost:9200/_cat/nodes?v可以查看節點的詳細信息;

http://localhost:9200/_cluster/stats 可以查看集群的狀態;

?v是一個專門的查看詳細信息的方法;

ElasticSearch集群本機搭建