windows下安装ElasticSearch

2020-05-08  本文已影响0人  KwongRay

一、安装JDK

ElasticSearch是基于lucence开发的,也就是运行需要java jdk支持。所以要先安装JAVA环境。

由于ElasticSearch 7.x 往后自带了JDK,如果你本地配置了JDK,会优先使用本机JDK,请确保JDK8以上

二、安装ElasticSearch

1、下载地址

https://www.elastic.co/downloads/elasticsearch

2、下载后解压

image.png

3、进入bin目录下,双击执行elasticsearch.bat

image.png image.png

4、看到started说明启动成功,访问,http://localhost:9200

image.png

三、网络访问

如果需要网络中的其他机器访问,需要做以下配置,打开config/elasticsearch.yml文件

# ---------------------------------- Network -----------------------------------
#
# Set the bind address to a specific IP (IPv4 or IPv6):
#
network.host: 0.0.0.0
#
# Set a custom port for HTTP:
#
#http.port: 9200
#
# For more information, consult the network module documentation.
#
# --------------------------------- Discovery ----------------------------------
#
# Pass an initial list of hosts to perform discovery when this node is started:
# The default list of hosts is ["127.0.0.1", "[::1]"]
#
#discovery.seed_hosts: ["host1", "host2"]
#
# Bootstrap the cluster using an initial set of master-eligible nodes:
#
cluster.initial_master_nodes: ["node-1"]
# ------------------------------------ Node ------------------------------------
#
# Use a descriptive name for the node:
#
node.name: node-1
#
# Add custom attributes to the node:
#
#node.attr.rack: r1
#

四、安装ik分词器

       查询数据,都是使用的默认的分词器,分词效果不太理想,会把text的字段分成一个一个汉字,然后搜索的时候也会把搜索的句子进行分词,所以这里就需要更加智能的分词器IK分词器了

image.png

备注:指定使用自带JDK(可选)

如果本机JDK出于某些原因不能更换,可以直接修改ElasticSearch文件,指定使用自带JDK,修改方法:
打开 elasticsearch-env.bat文件:

if defined JAVA_HOME (
  set JAVA="%JAVA_HOME%\bin\java.exe"
  set JAVA_TYPE=JAVA_HOME
) else (
  set JAVA="%ES_HOME%\jdk\bin\java.exe"
  set JAVA_HOME="%ES_HOME%\jdk"
  set JAVA_TYPE=bundled jdk
)

修改成

set JAVA="%ES_HOME%\jdk\bin\java.exe" 
set JAVA_HOME="%ES_HOME%\jdk" 

上一篇下一篇

猜你喜欢

热点阅读