- https://www.elastic.co/downloads/past-releases/elasticsearch-2-4-3 官网下载包,解压即用,默认仅可通过localhost 访问
- 修改vi ../config/elasticsearch.yml network.host: 127.0.0.1 ,即可通过IP 访问, 验证可用性 cd bin && ./elasticsearch ,浏览器访问 http://127.0.0.1:9200/?pretty 即可
- 安装marvel 插件方便调试
elasticsearch 插件安装
cd elasticsearch/bin && ./plugin install license 【需要收费但是开发用途版本免费】
cd elasticsearch/bin && ./plugin install marvel-agent
~/distribute/elasticsearch-2.4.3/config/elasticsearch.yml
95 marvel.agent.exporters:
96 id1:
97 type: http
98 host: ["http://127.0.0.1:9200"]
./elasticsearch 【前台启动】
kibana 以及插件安装【kibana 数据可视化服务】
https://www.elastic.co/downloads/past-releases/kibana-4-5-0 官网下载包,解压即用
cd bin && ./kibana plugin --install elasticsearch/marvel/2.3.1
cd bin && ./kibana plugin --install elastic/sense
vi ../config/kibana.yml
elasticsearch.url: "http://127.0.0.1:9200"
./kibana 【前台启动】
-
环境搭建完毕,可以通过sense进行开发调试DSL