概述
1、准备工作
1、nodejs下载
如何利用nvm安装nodejs
2、elasticsearch下载
可参考我的博客文章
linux环境下ElasticSearch的下载、安装与使用
2、下载
(1)下载安装包
wget https://github.com/mobz/elasticsearch-head/archive/master.zip
(2)解压elasticsearch-head源码包
unzip elasticsearch-head-master.zip
mv elasticsearch-head-master /usr/local/es-head
(3)安装grunt工具
cd /usr/local/es-head
npm install -g grunt --registry=https://registry.npm.taobao.org
(4)编译elasticsearch-head源码
npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm install
编译好后es-head根目录下会出现一个叫node_modules的目录,该目录就是存放源码编译后的可执行文件。
二、配置
1、设置插件管理界面跨主机访问
插件默认是只有本机的IP才能访问的,也就是127.0.0.1,这样我们就无法跨主机访问head 插件的管理界面,所以需要把它改成所有IP地址都能访问。该配置在head插件安装目录根目录下,文件名为Gruntfile.js。
cd /usr/local/es-head
vi Gruntfile.js
在该配置文件中connect-server-options下添加hostname: ‘0.0.0.0’
2、elasticsearch配置允许跨域访问
cd /usr/local/elasticsearch/config
vi elasticsearch.yml
在该配置文件中最末尾添加两个属性:http.cors.enabled: true和http.cors.allow-origin: “*”
三、启动
1、重启elasticsearch
cd /usr/local/elasticsearch/bin
./elasticsearch
2、运行head插件
cd /usr/local/es-head
grunt server
3、访问head插件管理界面
http://ip:9100/
温馨提示:若为云服务器的话,需要在安全组开通9100端口的访问权限
最后
以上就是冷静小蚂蚁为你收集整理的ElasticSearch-head的下载、安装与使用的全部内容,希望文章能够帮你解决ElasticSearch-head的下载、安装与使用所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复