首页 > 开发 > 综合 > 正文

elasticsearch5.2.1安装head步奏

2024-07-21 02:51:44
字体:
来源:转载
供稿:网友

1.    下载elasticsearch-head 下载地址:https://github.com/mobz/elasticsearch-head

2.    解压 unzipelasticsearch-head-master.zip

3.      安装需要node 如没有需要下载安装 下载地址 https://nodejs.org/dist/v5.10.1/node-v5.10.1-linux-x64.tar.gz

 

解压node

tar  -xzvf  node-v5.10.1-linux-x64.tar.gz

创建软连接

ln -s /home/node-v5.10.1-linux-x64/bin/node /usr/local/bin/node

ln -s /home/node-v5.10.1-linux-x64/bin/npm /usr/local/bin/npm

 

4.      到elasticsearch-head-master目录下,运行命令:

npm install

5.      如果速度较慢或者安装失败,可以使用国内镜像:

 npm install -g cnpm --registry=https://registry.npm.taobao.org

6.       修改Elasticsearch配置文件

编辑elasticsearch/config/elasticsearch.yml,加入以下内容:

http.cors.enabled: true

http.cors.allow-origin: "*"

7.      打开elasticsearch-head-master/Gruntfile.js,找到下面connect属性,新增hostname: ‘*’:

connect: {        server: {            options: {                hostname: '*',                port: 9100,                base: '.',                keepalive: true            }       }
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表