1. 程式人生 > >elasticsearch 常用管理命令

elasticsearch 常用管理命令

elasticsearch

修改elasticsearch內存分配

/usr/local/elasticsearch/bin/elasticsearch.in.sh


插件安裝(ES 1.x)

/usr/local/elasticsearch/bin/plugin -install mobz/elasticsearch-head/0.9


插件卸載

/usr/local/elasticsearch/bin/plugin -remove head


訪問插件

http://localhost:9200/_plugin/head


啟動

/usr/local/elasticsearch/bin/elasticsearch -d


關閉所有節點

curl -XPOST ‘http://localhost:9200/_shutdown‘


關閉本地節點

curl -XPOST ‘http://localhost:9200/_cluster/nodes/_local/_shutdown‘


刪除指定模板

curl -XDELETE localhost:9200/_template/geoip_web_template


查看現有模板

curl -XGET localhost:9200/_template/


查看指定模板

curl -XGET localhost:9200/_template/template_1


查看所有索引

curl ‘localhost:9200/_cat/indices?v



查看所有允許查看的信息

curl ‘localhost:9200/_cat/‘


查看群集健康狀態

curl ‘localhost:9200/_cat/health?v‘

curl -XGET ‘http://localhost:9200/_cluster/health?pretty‘

1 綠色,最健康的狀態,代表所有的分片包括備份都可用

2 黃色,基本的分片可用,但是備份不可用

3 紅色,部分的分片可用,表明分片有一部分損壞。


查看群集節點

curl ‘localhost:9200/_cat/nodes?v‘


查看群集狀態

curl -s -XGET ‘http://localhost:9200/_cluster/stats?pretty‘


查看文件描述符打開數量

curl -s -XGET 127.0.0.1:9200/_nodes/stats/NttdqsHLTRe5HCxPBlNrCw/process/?pretty


查看分片狀態

curl -XGET http://localhost:9200/_cat/shards


更多elasticsearch學習資料請參考Linux部落 http://www.linuxzone.net



本文出自 “莫等閑” 博客,請務必保留此出處http://ziywh.blog.51cto.com/6337291/1973731

elasticsearch 常用管理命令