Windows下ElasticSearch5X+版本安装head
概述
elasticsearch-head,之前插件plugin方式已废弃,现已改为nodejs的NPM安装,独立WEB服务方式。
elasticsearch-head网址:https://github.com/mobz/elasticsearch-head
步骤
1.安装nodejs
下载node.js ,网址:https://nodejs.org/en/
下载 推荐大多数用户使用的稳定版本,例如:8.11.1 LTSRecommended For Most Users
安装nodejs,安装包可以自动加入PATH环境变量
安装完成后,重新打开一个cmd窗口,输入执行
node -v
看到版本号说明安装和环境变量OK
2.在nodejs基础上安装grunt
grunt是一个很方便的构建工具,可以进行打包压缩、测试、执行等等的工作,elasticsearch-head就是通过grunt启动的。因此需要安装grunt:
cmd路径进入nodejs的安装目录下
输入执行
npm install -g grunt-cli
安装完成后,打开cmd窗口,输入执行
grunt -version
看到版本号说明安装和环境变量OK
3.下载并安装elasticsearch-head
https://github.com/mobz/elasticsearch-head
右侧 Clone or download按钮
点击下载。是一个zip包,解压缩
cmd路径进入上述解压缩的目录中,执行
npm install
完成安装
4.修改elasticsearch配置文件
elasticsearch的配置文件:config目录下的elasticsearch.yml中,务必加上:
# 增加新的参数,这样elasticsearch才允许elasticsearch-head访问 http.cors.enabled: true http.cors.allow-origin: "*"
注:elasticsearch.yml配置文件,冒号后面要有一个空格
5.启动elasticsearch
执行elasticsearch目录下的 bin\elasticsearch.bat
6.启动elasticsearch-head
cmd进入elasticsearch-head目录,执行:
npm run start
7.WEB访问elasticsearch-head
http://localhost:9100 可以访问了
推荐阅读
-
windows 10 下安装mysql 5.7.17的简单笔记
-
python在Windows下安装setuptools(easy_install工具)步骤详解
-
Resin在Windows系统下的安装
-
解析windows下使用命令的方式安装mysql5.7的方法
-
windows下clarisse ifx怎么安装?Isotropix clarisse ifx 3.5 sp4安装破解图文教程
-
MAC下安装tensorflow 1.15.0版本
-
Windows下JBOSS安装配置图文教程
-
Windows下安装jmeter图文教程
-
Windows下Node爬虫神器Puppeteer安装记
-
linux下mysql5.7.17最新稳定版本安装教程