ES 6.3 安装head插件

ES 6.3 安装head插件

①下载head压缩包,解压

②确保已安装node.js,npm可用(最好换成淘宝源,速度快)

设成淘宝的       npm config set registry http://registry.npm.taobao.org/

换成原来的       npm config set registry https://registry.npmjs.org/

③修改$HEAD/Gruntfile.js   ([connect]-[server]-[options])

port: 9100,

base: '.',

keepalive: true,

hostname: '*'

④修改$HEAD/_site/app.js下localhost:9200为ip:9200

⑤开放防火墙端口

vi /etc/sysconfig/iptables

-A INPUT -p tcp -m state --state NEW -m tcp --dport 9100 -j ACCEPT

⑥安装grunt 来启动head的服务

npm  install  -g  grunt-cli

⑦启动head服务

grunt server

⑧浏览器访问测试

ip:9100

ip:9100/?auth_user=user&auth_password=passwd  (x-pack安全认证开启,需要用户名密码 )

你可能感兴趣的:(elasticsearch)