elasticsearch5.0.2在windows中的安装方法
Posted 企久数据
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了elasticsearch5.0.2在windows中的安装方法相关的知识,希望对你有一定的参考价值。
一、安装elasticsearch
下载压缩包并解压
https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.0.2.zip
bin\elasticsearch.bat
注:默认至少2G的内存,如果电脑内存不够,
编辑config/jvm.options中的
-Xms2g
-Xmx2g
为
-Xms1g
-Xmx1g
打开查看
http://localhost:9200/
二、安装kibana
下载压缩包并解压
https://artifacts.elastic.co/downloads/kibana/kibana-5.0.2-windows-x86.zip
编辑文件config/kibana.yml中
elasticsearch.url指向Elasticsearch实例,这里设为http://localhost:9200
bin\kibana.bat
打开查看kibana
http://localhost:5601
三、安装x-pack
1.在线安装:
bin/elasticsearch-plugin install x-pack
启动elasticsearch(如果已经启动请跳过这一步)
bin/elasticsearch
bin/kibana-plugin install x-pack
启动kibana(如果已经启动请跳过这一步)
bin/kibana
2离线安装x-pack
离线下载地址
https://www.elastic.co/guide/en/x-pack/5.0/installing-xpack.html#xpack-installing-offline
bin/elasticsearch-plugin install file:///path/to/file/x-pack-5.0.2.zip
bin/kibana-plugin install file:///path/to/file/x-pack-5.0.2.zip
3.升级x-pack
停止elasticsearch
卸载旧的x-pack
bin/elasticsearch-plugin remove x-pack
安装新的x-pack
bin/elasticsearch-plugin install x-pack
启动elasticsearch
从kibana中移除x-pack
bin/kibana-plugin remove x-pack
在kibana中安装x-pack
bin/kibana-plugin install x-pack
4.卸载x-pack
停止elasticsearch
卸载x-pack
bin/elasticsearch-plugin remove x-pack
启动elasticsearch
从kibana中移除x-pack
bin/kibana-plugin remove x-pack
启动kibana
以上是关于elasticsearch5.0.2在windows中的安装方法的主要内容,如果未能解决你的问题,请参考以下文章