ElasticSearch 5.2.X安装ElasticSearch-head
安装nodejs环境
1
2
3
4
5
6
7wget https://npm.taobao.org/mirrors/node/latest-v4.x/node-v4.4.7-linux-x64.tar.gz
tar -zxvf node-v4.4.7-linux-x64.tar.gz
export PATH=$PATH:/soft/node-v4.4.7-linux-x64/binnodejs包中已经包含了nmp
测试1
2
3
4
5node --version
v4.4.7
npm --version
2.15.8安装grunt
安装grunt命令行工具grunt-cli1
npm install -g grunt-cli
安装grunt及其插件
1
npm install -g grunt --save-dev
测试
1
2grunt -version
grunt-cli v1.2.0安装elasticsearch-head
如果没有Git先安装1
2yum install git
先克隆项目
1
2git clone git://github.com/mobz/elasticsearch-head.git
安装
1
2
3
4
5
6cd elasticsearch-head
npm install
npm install grunt --saveelasticsearch-head的配置文件是Gruntfile.js,默认监听在127.0.0.1下9100端口
然后cd /usr/local/elasticsearch-head 执行
1 | grunt server |
浏览器访问 http://172.16.31.220:9100/
问题:
启动完之后,head主控页面是可以显示的,但是显示连接失败
1 | “集群健康值: 未连接” |
查资料:解决方案,修改elasticsearch.yml文件
1 | vim $ES_HOME$/config/elasticsearch.yml |
重启es和head即可
说明:
key | 说明 |
---|---|
http.cors.enabled | 是否支持跨域,默认为false |
http.cors.allow-origin | 当设置允许跨域,默认为*,表示支持所有域名,如果我们只是允许某些网站能访问,那么可以使用正则表达式。比如只允许本地地址。 /https?://localhost(:[0-9]+)?/ |
http.cors.max-age | 浏览器发送一个“预检”OPTIONS请求,以确定CORS设置。最大年龄定义多久的结果应该缓存。默认为1728000(20天) |
http.cors.allow-methods | 允许跨域的请求方式,默认OPTIONS,HEAD,GET,POST,PUT,DELETE |
http.cors.allow-headers | 跨域允许设置的头信息,默认为X-Requested-With,Content-Type,Content-Length |
http.cors.allow-credentials | 是否返回设置的跨域Access-Control-Allow-Credentials头,如果设置为true,那么会返回给客户端。 |