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下系统中安装pycrypto常见问题解决
-
Windows系统下配置安装Apache+php实战_PHP教程
-
在windows iis5下安装php4.0+mysql之我见_php基础
-
ubuntu下安装Python多版本的方法及注意事项
-
在Windows下安装MySQL的图形管理工具phpMyAdmin_PHP
-
windows下安装RabbitMQ
-
windows下安装了wamp,运行时打开直接打开php文件提示下载?
-
Windows7下PHP开发环境安装配置图文方法_PHP教程
-
Windows XP下全新安装Apache2,PHP5,MYSQL5,Zend的简单过程_PHP
-
Windows下安装PHP的MongoDB驱动