Elasticsearch的安装(windows)

本文涉及的产品
检索分析服务 Elasticsearch 版,2核4GB开发者规格 1个月
简介: 下载并运行elasticsearch;下载并配置elasticsearch-head;构建项目所需的索引

0x01 下载并运行elasticsearch


1. 下载

(下载指定版本的网址:https://www.elastic.co/downloads/past-releases20190121162244333.png

a. 点击网页头部的downloads:

20190121162328954.png

b. 点击Elasticsearch的Download:

20190121162522578.png


c. 会显示最新版本,可以点击网页中部的past releases下载之前的版本:

20190121162620779.png


d. 搜索想要的版本,这里下载Elasticsearch 5.6.1版本,点击download:

20190121162757575.png


e. 点击相对于的系统版本,这里是win,选zip格式,如是linux或mac则选择tar:

20190121162914312.png


2. 解压

a. 解压(如:E:\SmallTools\elasticsearch-5.6.1)

20190121163842139.png


3. 运行

a. 执行bin路径下的:elasticsearch.bat

b. 等执行完成后在浏览器输入:localhost:9200

c.可看到以下信息:

20190121163530423.png


0x02 下载并配置elasticsearch-head

1. 下载并解压插件

20190121164314781.png


a. 点击第一个:

20190121164447667.png


b. 点击下载链接:

20190121164556895.png


c. 解压(如:E:\SmallTools\elasticsearch-head-master)


2. 安装node.js

a. node.js安装(参考教程:https://blog.csdn.net/Sweet__Cat/article/details/77726052)

我本地安装的版本为:node.js v6.12.3

C:\Users\Administrator>node -v
v6.12.3
C:\Users\Administrator>


3. 初始化并配置elasticsearch-head插件

a. 按键盘win+R,输入cmd,点击运行

输入:

e:

回车,输入(需改为自己的解压路径):

cd E:\SmallTools\elasticsearch-head-master

20190121170204920.png


b. 然后执行(没有error表示成功)

npm install

20190121170643187.png


c. 继续执行:

npm run start

20190121170829601.png


d. 在浏览器中打开提示的端口

20190121170930777.png


e. 配置Elasticsearch与elasticsearch-head插件关联

修改E:\SmallTools\elasticsearch-5.6.1\config\elasticsearch.yml

添加下面两行:

http.cors.enabled: true
http.cors.allow-origin: "*"


20190121171605598.png


添加(注意冒号后面有空格!!!!):

f. 关掉之前的Elasticsearch并重新启动,刷新浏览器发现状态已更新为green:

http://localhost:9100/


20190121171842357.png


0x03 构建项目所需的索引


1. 编写Elasticsearch索引
{
  "settings": {
    "number_of_replicas": 0
  },
  "mappings": {
    "house": {
      "dynamic": false,
      "properties": {
        "houseId": {
          "type": "long"
        },
        "title": {
          "type": "text",
          "index": "analyzed"
        },
        "price": {
          "type": "integer"
        },
        "area": {
          "type": "integer"
        },
        "createTime": {
          "type": "date",
          "format": "strict_date_optional_time||epoch_millis"
        },
        "lastUpdateTime": {
          "type": "date",
          "format": "strict_date_optional_time||epoch_millis"
        },
        "cityEnName": {
          "type": "keyword"
        },
        "regionEnName": {
          "type": "keyword"
        },
        "direction": {
          "type": "integer"
        },
        "distanceToSubway": {
          "type": "integer"
        },
        "subwayLineName": {
          "type": "keyword"
        },
        "subwayStationName": {
          "type": "keyword"
        },
        "tags": {
          "type": "text"
        },
        "street": {
          "type": "keyword"
        },
        "district": {
          "type": "keyword"
        },
        "description": {
          "type": "text",
          "index": "analyzed"
        },
        "layoutDesc" : {
          "type": "text",
          "index": "analyzed"
        },
        "traffic": {
          "type": "text",
          "index": "analyzed"
        },
        "roundService": {
          "type": "text",
          "index": "analyzed"
        },
        "rentWay": {
          "type": "integer"
        }
      }
    }
  }
}


2. 执行Elasticsearch索引

a. 按序号执行,注意修改路径(也可以使用postman或者谷歌插件Restlet Client)

20190121173423914.png


b. 出现此信息,表示索引构建成功!


20190121173522626.png


0xFF 总结


同学们可以不安装node.js和elasticsearch-head插件,但为了方便,还是同步教程比较好,node.js的可以安装更高版本,建议安装,因为后期项目实战以及前端框架Vue教程会使用到。

相关实践学习
使用阿里云Elasticsearch体验信息检索加速
通过创建登录阿里云Elasticsearch集群,使用DataWorks将MySQL数据同步至Elasticsearch,体验多条件检索效果,简单展示数据同步和信息检索加速的过程和操作。
ElasticSearch 入门精讲
ElasticSearch是一个开源的、基于Lucene的、分布式、高扩展、高实时的搜索与数据分析引擎。根据DB-Engines的排名显示,Elasticsearch是最受欢迎的企业搜索引擎,其次是Apache Solr(也是基于Lucene)。 ElasticSearch的实现原理主要分为以下几个步骤: 用户将数据提交到Elastic Search 数据库中 通过分词控制器去将对应的语句分词,将其权重和分词结果一并存入数据 当用户搜索数据时候,再根据权重将结果排名、打分 将返回结果呈现给用户 Elasticsearch可以用于搜索各种文档。它提供可扩展的搜索,具有接近实时的搜索,并支持多租户。
相关文章
|
23天前
|
机器学习/深度学习 并行计算 异构计算
WINDOWS安装eiseg遇到的问题和解决方法
通过本文的详细步骤和问题解决方法,希望能帮助你顺利在 Windows 系统上安装和运行 EISeg。
47 2
|
1月前
|
网络安全 Windows
Windows server 2012R2系统安装远程桌面服务后无法多用户同时登录是什么原因?
【11月更文挑战第15天】本文介绍了在Windows Server 2012 R2中遇到的多用户无法同时登录远程桌面的问题及其解决方法,包括许可模式限制、组策略配置问题、远程桌面服务配置错误以及网络和防火墙问题四个方面的原因分析及对应的解决方案。
|
1月前
|
NoSQL Linux PHP
如何在不同操作系统上安装 Redis 服务器,包括 Linux 和 Windows 的具体步骤
本文介绍了如何在不同操作系统上安装 Redis 服务器,包括 Linux 和 Windows 的具体步骤。接着,对比了两种常用的 PHP Redis 客户端扩展:PhpRedis 和 Predis,详细说明了它们的安装方法及优缺点。最后,提供了使用 PhpRedis 和 Predis 在 PHP 中连接 Redis 服务器及进行字符串、列表、集合和哈希等数据类型的基本操作示例。
60 4
|
1月前
|
存储 安全 数据管理
如何在 Rocky Linux 8 上安装和配置 Elasticsearch
本文详细介绍了在 Rocky Linux 8 上安装和配置 Elasticsearch 的步骤,包括添加仓库、安装 Elasticsearch、配置文件修改、设置内存和文件描述符、启动和验证 Elasticsearch,以及常见问题的解决方法。通过这些步骤,你可以快速搭建起这个强大的分布式搜索和分析引擎。
50 5
|
2月前
|
数据安全/隐私保护 Windows
安装 Windows Server 2019
安装 Windows Server 2019
|
2月前
|
Windows
安装 Windows Server 2003
安装 Windows Server 2003
|
2月前
|
Linux 网络安全 虚拟化
适用于Linux的Windows子系统(WSL1)的安装与使用记录
并放到启动文件夹,就可以开机自动启动了。
89 0
|
2月前
|
Windows
安装Windows XP系统
安装Windows XP系统
|
7月前
|
监控 安全 Java
ElasticSearch在Windows上的下载与安装
ElasticSearch在Windows上的下载与安装
|
Windows
后端 --- Elasticsearch在Windows下安装
后端 --- Elasticsearch在Windows下安装
后端 --- Elasticsearch在Windows下安装