windows 搭建elasticsearch环境

这篇具有很好参考价值的文章主要介绍了windows 搭建elasticsearch环境。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

安装 Elastic Search

下载及安装

  1. 官方下载地址
  2. 下载并解压

启动 Elastic search

双击bin\elasticsearch.bat 启动
启动成功之后就会在localhost:9200看到相应的数据信息

控制台中文乱码, 需要在config/jvm.options文件中添加

# ensure UTF-8 encoding by default (e.g. filenames)
-Dfile.encoding=GBK

在启动过程中可能会出现一些问题, 这里有解决方法地址

插件安装

安装插件之前需要安装node.js.
插件版本匹配信息
插件安装

IK分词器下载地址

issue: Plugin [kibana-8.5.0] is missing a descriptor properties file.
这是由于版本不匹配导致的错误
我的elasticsearch version: 8.4.3
kibana version: 8.4.3
在启动过程中可能会找properties文件,在8.4.3版本中并没有这个文件, 文件名为plugin-descriptor.properties,可以copy一下:

# Elasticsearch plugin descriptor file
# This file must exist as 'plugin-descriptor.properties' at
# the root directory of all plugins.
#
# A plugin can be 'site', 'jvm', or both.
#
### example site plugin for "foo":
#
# foo.zip <-- zip file for the plugin, with this structure:
#   _site/ <-- the contents that will be served
#   plugin-descriptor.properties <-- example contents below:
#
# site=true
# description=My cool plugin
# version=1.0
#
### example jvm plugin for "foo"
#
# foo.zip <-- zip file for the plugin, with this structure:
#   <arbitrary name1>.jar <-- classes, resources, dependencies
#   <arbitrary nameN>.jar <-- any number of jars
#   plugin-descriptor.properties <-- example contents below:
#
# jvm=true
# classname=foo.bar.BazPlugin
# description=My cool plugin
# version=2.0.0-rc1
# elasticsearch.version=2.0
# java.version=1.7
#
### mandatory elements for all plugins:
#
# 'description': simple summary of the plugin
description=Kibana for Elasticsearch
#
# 'version': plugin's version
version=8.4.3
#
# 'name': the plugin name
name=kibana
#
# 'classname': the name of the class to load, fully-qualified.
classname=org.elasticsearch.plugin.kibana
#
# 'java.version' version of java the code is built against
# use the system property java.specification.version
# version string must be a sequence of nonnegative decimal integers
# separated by "."'s and may have leading zeros
java.version=1.8
#
# 'elasticsearch.version' version of elasticsearch compiled against
# You will have to release a new version of the plugin for each new
# elasticsearch release. This version is checked when the plugin
# is loaded so Elasticsearch will refuse to start in the presence of
# plugins with the incorrect elasticsearch.version.
elasticsearch.version=8.4.3

如何在开发机上运行多个实例

bin/elasticsearch -E node.name=node1 -E cluster.name=geedtime -E path.data=node1_data
bin/elasticsearch -E node.name=node2 -E cluster.name=geedtime -E path.data=node2_data

删除进程文章来源地址https://www.toymoban.com/news/detail-406987.html

ps grep|elasticsearch

到了这里,关于windows 搭建elasticsearch环境的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • windows 搭建elasticsearch环境

    官方下载地址 下载并解压 双击binelasticsearch.bat 启动 启动成功之后就会在localhost:9200看到相应的数据信息 控制台中文乱码, 需要在config/jvm.options文件中添加 在启动过程中可能会出现一些问题, 这里有解决方法地址 安装插件之前需要安装node.js. 插件版本匹配信息 插件安装

    2023年04月09日
    浏览(37)
  • 【elastic search】JAVA操作elastic search

    目录 1.环境准备 2.ES JAVA API 3.Spring Boot操作ES 本文是作者ES系列的第三篇文章,关于ES的核心概念移步: https://bugman.blog.csdn.net/article/details/135342256?spm=1001.2014.3001.5502 关于ES的下载安装教程以及基本使用,移步: https://bugman.blog.csdn.net/article/details/135342256?spm=1001.2014.3001.5502 在前文

    2024年01月25日
    浏览(46)
  • windows 下 搭建 ElasticSearch 环境,前端开发常用软件

    打开浏览器测试: http://localhost:9200 彻底关闭ES 第三步:将ElasticSearch安装为Windows服务 进入bin目录下执行命令: elasticsearch-service.bat install 在windows服务中查看 elasticsearch-service.bat后面还可以执行这些命令 install: 安装Elasticsearch服务 remove: 删除已安装的Elasticsearch服务(如果启动则

    2024年04月13日
    浏览(57)
  • windows环境下,安装elasticsearch

    win10 elasticsearch 8.9.0 ElasticSearch 是基于lucence开发的,也就是运行需要java jdk支持。 ElasticSearch 8.9.0 自带 OpenJDK ,无需再安装jdk。 在Windows系统安装Nodejs 下载安装包:https://www.elastic.co/downloads/elasticsearch 下载源码:https://github.com/mobz/elasticsearch-head 下载安装包后解压 2. 进入bin目录

    2024年02月15日
    浏览(36)
  • Elastic Search一些用法

    参考: 中国开源社区 官方介绍 ES 的权重排序 【Elasticsearch】ElasticSearch 7.8 多字段权重排序 ElasticSearch7.3学习(十三)----定制动态映射(dynamic mapping) 【Elasticsearch教程4】Mapping 动态映射 【Elasticsearch教程5】Mapping 动态模板 Dynamic templates 注意事项:需要先创建模板,然后添加数据

    2024年02月06日
    浏览(44)
  • elastic search入门

    参考1:Elastic Search 入门 - 知乎 参考2:Ubuntu上安装ElasticSearch_ubuntu elasticsearch-CSDN博客 1、ElasticSearch安装 1.1安装JDK,省略,之前已安装过 1.2创建ES用户 1.3 下载ElasticSearch安装包 Ubuntu上下载: 然后解压: 1.4配置 配置jvm.options 配置elasticsearch.yml: 根据以上设置的path.data和path.l

    2024年01月23日
    浏览(50)
  • Elasticsearch及相关环境安装 - Windows

    需要具备Java环境(1.8或11版本)推荐Java11 查看Elasticsearch与JVM版本兼容性:https://www.elastic.co/cn/support/matrix#matrix_jvm 官网下载地址:https://www.elastic.co/cn/downloads/past-releases#elasticsearch 下载完成后直接解压即可; 进入 bin 目录打开cmd窗口执行 elasticsearch 命令; 看到 started 输出表示

    2024年02月10日
    浏览(43)
  • SpringCloud整合Elastic Search

    1、配置Elastic Search 注释说明: spring.elasticsearch.rest.uris :设置Elastic Search的连接地址,这里的示例是本地地址 http://localhost:9200 ,根据实际情况修改。 spring.elasticsearch.username 和 spring.elasticsearch.password :设置Elastic Search的用户名和密码,如果没有设置访问控制,这两项可以省略

    2024年02月15日
    浏览(46)
  • Windows环境安装Elasticsearch和Kibana

    Elasticsearch 高版本内置jdk,无需使用系统安装的java 官网下载:https://www.elastic.co/cn/downloads/elasticsearch#ga-release 解压后,进入 bin 目录,双击 elasticsearch.bat 启动 elasticsearch 服务 添加到环境变量 Elasticsearch_Server ,并加入到 PATH 中 如果是 低版本访问,直接访问 http://127.0.0.1:9200/ 如

    2024年02月05日
    浏览(57)
  • Windows环境下Elasticsearch相关软件安装

    本文将介绍在 windows 环境下安装 Elasticsearch 相关的软件。 1.1 安装jdk ElasticSearch是基于lucence开发的,也就是运行需要java jdk支持,所以要先安装JAVA环境。 由于ElasticSearch 5.x 往后依赖于JDK 1.8的,所以现在我们下载JDK 1.8或者更高版本。 这里将不再介绍JDK的安装,如果有需要请参

    2024年02月04日
    浏览(37)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包