Elasticsearch入门安装

1、下载安装

(1)安装Elasticsearch

下载地址:https://www.elastic.co/cn/downloads/elasticsearch

解压后运行 /bin/elasticsearch.bat

运行后访问 http://127.0.0.1:9200/即可

ps1:若无法访问且控制台打印

received plaintext http traffic on an https channel, closing connection Netty4HttpChannel{localAddress=/127.0.0.1:9200, remoteAddress=/127.0.0.1:54622}

原因是高版本Elasticsearch在Windows下开启了安全认证。

修改配置文件 /config/elasticsearch.yml中两处:

xpack.security.enabled: false
xpack.security.http.ssl:
  enabled: false

ps2:低版本es对jdk有要求,高版本8.+会自动忽略本地环境不合适的jdk

ps3:低版本没有自带ingest-attachment插件,需要使用文件检索时,需要到安装目录下执行elasticsearch-plugin install ingest-attachment 安装

ps4:文件上传时定义文本抽取管道:

PUT /_ingest/pipeline/attachment
{
    "description": "Extract attachment information",
    "processors": [
        {
            "attachment": {
                "field": "content",
                "ignore_missing": true
            }
        },
        {
            "remove": {
                "field": "content"
            }
        }
    ]
}

在 attachment 中指定要过滤的字段为 content,所以写入 es时需要将文档内容放在 content 字段。

比如文档:

PUT /fileindex
{
  "mappings": {
    "properties": {
      "id":{
        "type": "keyword"
      },
      "name":{
        "type": "text",
        "analyzer": "ik_max_word"
      },
      "type":{
        "type": "keyword"
      },
      "attachment": {
        "properties": {
          "content":{
            "type": "text"
          }
        }
      },
      "caseId":{
        "type": "text"
      },
      "caseArea":{
        "type": "text"
      },
      "caseName":{
        "type": "text",
        "analyzer": "ik_max_word"
      },
      "caseType":{
        "type": "text",
        "analyzer": "ik_max_word"
      },
      "startDate":{
        "type": "date"
      },
      "endDate":{
        "type": "date"
      },
      "signDate":{
        "type": "date"
      }
    }
  }
}

(2)安装分词器ik(按需)

下载地址:https://release.infinilabs.com/analysis-ik/stable/

解压到es目录/plugins下 ,重启es即可

2、安装elasticsearch-head

(1)安装nodejs

下载地址:https://nodejs.org/en/download/

cmd输入 node -v 命令,输出了版本号,则node安装成功。

(2)安装grunt

下载地址:CMD中执行 npm install -g grunt-cli

(3)安装

下载地址:elasticsearch-head

https://download.csdn.net/download/weixin_45003809/89510856

解压后进入安装目录,执行 npm install

再执行 npm run start 启动服务

即可通过 http://localhost:9100/ 访问

ps:如果无法发现ES节点,尝试在ES配置文件/config/elasticsearch.yml中配置允许跨域

http.cors.enabled: true

http.cors.allow-origin: "*"

3、安装kibana

下载地址:https://www.elastic.co/cn/downloads/past-releases#kibana

解压后运行 /bin/kibana.bat

ps1:

可以在配置文件 /config/kibana.yml 中更改语言
i18n.locale: "zh-CN"

相关推荐
昨天今天明天好多天2 小时前
【数据仓库】
大数据
油头少年_w2 小时前
大数据导论及分布式存储HadoopHDFS入门
大数据·hadoop·hdfs
Elastic 中国社区官方博客3 小时前
释放专利力量:Patently 如何利用向量搜索和 NLP 简化协作
大数据·数据库·人工智能·elasticsearch·搜索引擎·自然语言处理
力姆泰克3 小时前
看电动缸是如何提高农机的自动化水平
大数据·运维·服务器·数据库·人工智能·自动化·1024程序员节
力姆泰克3 小时前
力姆泰克电动缸助力农业机械装备,提高农机的自动化水平
大数据·服务器·数据库·人工智能·1024程序员节
QYR市场调研3 小时前
自动化研磨领域的革新者:半自动与自动自磨机的技术突破
大数据·人工智能
半部论语5 小时前
第三章:TDengine 常用操作和高级功能
大数据·时序数据库·tdengine
EasyGBS5 小时前
国标GB28181公网直播EasyGBS国标GB28181软件管理解决方案
大数据·网络·音视频·媒体·视频监控·gb28181
2403_875736876 小时前
道品科技的水肥一体化智能灌溉:开启现代农业的创新征程
大数据·人工智能·1024程序员节
河南查新信息技术研究院6 小时前
科技查新在医药健康领域的应用
大数据·科技·全文检索