windows下安裝elasticsearch
1.下載elasticsearch,地址:http://www.elasticsearch.org/overview/elkdownloads/
2.配置環境變量path,指向elasticsearch的bin
3.發布為service。
打開dos窗口輸入:service install [service-name]
啟動elasticsearch:service start [service-name]
停止elasticsearch:service stop [service-name]
移除elasticsearch: service remove [service-name]
4.在瀏覽器訪問:http://localhost:9200,訪問成功即安裝成功
5.安裝head插件:在dos窗口輸入:plugin -install mobz/elasticsearch-head,測試 http://localhost:9200/_plugin/head
安裝bigdesk插件:在dos窗口輸入:plugin -install lukas-vlcek/bigdesk,測試 http://localhost:9200/_pugin/bigdesk
來自:
http://blog.csdn.net/hi_kevin/article/details/38079007