Elasticsearch6.3.2及其head插件安装

  1. 下载并解压Elasticsearch6.3.2

这里写图片描述

  1. 进入config文件夹修改elasticsearch.yml文件
# 集群的名字  
cluster.name: my-es
# 节点名字  
node.name: node-1   
# 数据存储目录(多个路径用逗号分隔)  
path.data:  /home/els/es/data
# 日志目录  
path.logs: /home/els/es/log  
#本机的ip地址
network.host: 192.168.0.197  
# 设置节点间交互的tcp端口(集群),(默认9300)  
transport.tcp.port: 9300  
# 监听端口(默认)  
http.port: 9200  
# 增加参数,使head插件可以访问es  
http.cors.enabled: true  
http.cors.allow-origin: "*"
  1. 进入bin文件夹启动es ./elasticsearch
    Elasticsearch6.3.2及其head插件安装_第1张图片

  2. 下载载并解压head插件

  3. 修改_site文件夹中的app.js
this.base_uri = this.config.base_uri || this.prefs.get("app-base_uri") || "http://192.168.0.197:9200";
  1. 安装npm
yum install git npm  
  1. 安装grunt
npm install -g grunt-cli
  1. 启动head
grunt server

Elasticsearch6.3.2及其head插件安装_第2张图片

你可能感兴趣的:(Elasticsearch,Elasticsearch)