标签:amp .config gis 微软雅黑 tag type 变量 cnp base
elasticsearch head插件安装:
准备工作:
https://nodejs.org/en/download/
node-v6.11.2-linux-x64.tar.xz
yum -y install xz
$xz -d ***.tar.xz
$tar -xvf ***.tar
# set node environment
export NODE_HOME=/usr/local/node-v6.11.2-linux-x64
export PATH=$PATH:$NODE_HOME/bin
[sky@hadoop1 bin]$ node -v
v6.11.2
[sky@hadoop1 bin]$ npm -v
3.10.10
npm install -g grunt-cli
grunt -version
https://github.com/mobz/elasticsearch-head
到elasticsearch-head-master目录下,运行命令:
npm install
如果速度较慢或者安装失败,可以使用国内镜像:
npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm install
①修改elasticsearch.yml,增加跨域的配置(需要重启es才能生效)
http.cors.enabled: true http.cors.allow-origin: "*"
②编辑head/Gruntfile.js,修改服务器监听地址,增加hostname属性,将其值设置为*。
connect: { hostname: ‘*‘, server: { options: { port: 9100, base: ‘.‘, keepalive: true } } }
connect: { server: { options: { hostname: ‘*‘, port: 9100, base: ‘.‘, keepalive: true } } }
③编辑head/_site/app.js,修改head连接es的地址,将localhost修改为es的IP地址
this.base_uri = this.config.base_uri || this.prefs.get("app-base_uri") || "http://192.168.1.151:9200";
nohup grunt server &
大功告成!!!不容易啊。
ELK 学习笔记之 elasticsearch head插件安装
标签:amp .config gis 微软雅黑 tag type 变量 cnp base
原文地址:http://www.cnblogs.com/AK47Sonic/p/7440860.html