Elasticsearch5.1.1+ik分词器+HEAD插件安装小记
一、安装elasticsearch
1.首先需要安装好java,并配置好环境变量,详细教程请看
http://tecadmin.net/install-java-8-on-centos-rhel-and-fedora/#
2.安装ElasticSearch,下载rpm包:
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.1.1.rpm
rpm -ivh elasticsearch-5.1.1.rpm
3.修改elasticsearch的配置文件:
vi /etc/elasticsearch/elasticsearch.yml
修改其中的network.host为本机ip,http.port为9200
4.安装成功后,启动elasticsearch:
systemctl daemon-reload
systemctl enable elasticsearch.service (设置开机自启动)
systemctl start elasticsearch.service (开启服务)
systemctl status elasticsearch.service (查看服务状态)
检查是否成功:curl http://*****:9200
二、安装ik分词器
1、进入https://github.com/medcl/elasticsearch-analysis-ik/,找到ik分词器对应的版本为5.1.1,直接下载其release的版本(避免maven打包);
2、在/usr/share/elasticsearch/plugins下建立ik目录:
mkdir /usr/share/elasticsearch/plugins/ik
3、复制文件至elasticsearch的plugins文件夹的ik文件夹下:
cp elasticsearch-analysis-ik-5.1.1.zip /usr/share/elasticsearch/plugins/ik
4.解压文件:
unzip elasticsearch-analysis-ik-5.1.1.zip
三、安装HEAD插件
1、安装node.js,去官网下载nodejs,https://nodejs.org/en/download/
2、下载下来的jar包是xz格式的,一般的linux可能不识别,还需要安装xz.
yum -y install xz
3、然后解压nodejs的安装包:
xz -d node*.tar.xz
tar -xvf node*.tar
4、解压完node的安装文件后,需要配置下环境变量,编辑/etc/profile:
vi /etc/profile
5、添加以下内容:
# set node environment
export NODE_HOME=/opt/node-v6.9.2-linux-x64
export PATH=$PATH:$NODE_HOME/bin
6、使其立即生效:
source /etc/profile
7、这个时候可以测试一下node是否生效:
echo $NODE_HOME
node -v
npm -v
8、安装grunt:
npm install -g grunt-cli
9、打开elasticseach-head目录下的Gruntfile.js文件,命令模式下查找修改处:
/9100
修改为:
connect:
{
server:{
options: {
port: 9100,
hostname: '*',
base: '.',
keepalive: true
}
}
}
红色部分为新加上去的。
10、修改elasticsearch-head/_site/app.js链接地址:
this.base_uri = this.config.base_uri || this.prefs.get("app-base_uri") || "http://localhost:9200";
把localhost修改成你es的服务器地址,如:
this.base_uri = this.config.base_uri || this.prefs.get("app-base_uri") || "http://10.10.10.10:9200";
11、安装,使用淘宝镜像更快
npm install -g grunt --registry=https://registry.npm.taobao.org
12、最后,启动nodejs
grunt server
13、开放9100端口,并访问
firewall-cmd --add-port=9100/tcp
curl http://192.168.13.157/9100
Elasticsearch5.1.1+ik分词器+HEAD插件安装小记的更多相关文章
- Docker下安装Elasticsearch、ik分词器、kibana
1:使用docker拉取Elasticsearch镜像 docker pull elasticsearch:7.12.0(不加版本号默认是最新版本) 2:查看是否成功下载镜像 docker image ...
- Elasticsearch下安装ik分词器
安装ik分词器(必须安装maven) 上传相应jar包 解压到相应目录 unzip elasticsearch-analysis-ik-master.zip(zip包) cp -r elasticse ...
- ElasticSearch(六):IK分词器的安装与使用IK分词器创建索引
之前我们创建索引,查询数据,都是使用的默认的分词器,分词效果不太理想,会把text的字段分成一个一个汉字,然后搜索的时候也会把搜索的句子进行分词,所以这里就需要更加智能的分词器IK分词器了. 1. i ...
- IK分词器的安装与使用IK分词器创建索引
之前我们创建索引,查询数据,都是使用的默认的分词器,分词效果不太理想,会把text的字段分成一个一个汉字,然后搜索的时候也会把搜索的句子进行分词,所以这里就需要更加智能的分词器IK分词器了. 1. i ...
- Elastic Stack 笔记(二)Elasticsearch5.6 安装 IK 分词器和 Head 插件
博客地址:http://www.moonxy.com 一.前言 Elasticsearch 作为开源搜索引擎服务器,其核心功能在于索引和搜索数据.索引是把文档写入 Elasticsearch 的过程, ...
- ElasticSearch5.3安装IK分词器并验证
ElasticSearch5.3安装IK分词器 之前使用Elasticsearch安装head插件成功了,但是安装IK分词器却失败了.貌似是ElasticSearch5.0以后就不支持直接在elast ...
- docker上安装elasticsearch和ik分词器插件和header,实现分词功能
docker run -di --name=tensquare_es -p 9200: -p 9300:9300 elasticsearch:5.6.8 创建elasticsearch容器(如果版本不 ...
- es-07-head插件-ik分词器插件
5.x以后, es对head插件的支持并不是特别好 而且kibana的功能越来越强大, 建议使用kibana 1, head插件安装 在一台机器上安装head插件就可以了 1), 更新,安装依赖 su ...
- IK分词器插件elasticsearch-analysis-ik 6.1.1
http://88250.b3log.org/full-text-search-elasticsearch#b3_solo_h3_0 IK分词器插件 (1)源码 https://github.com/ ...
随机推荐
- PHP TCPDF ERROR: [Image] Unable to get image解决办法详解
使用TCPDF输出pdf文件时,有时会直接显示pdf文件不可显示,仔细调试之下会报错TCPDF ERROR: [Image] Unable to get image.问题出现Image()函数中.第一 ...
- *HDU 1068 二分图
Girls and Boys Time Limit: 20000/10000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) ...
- Unity学习疑问记录之触摸点坐标
Vector3 pos=Camera.main.ScreenToWorldPoint(Input.GetTouch(0).position); 类似的鼠标点击Camera.main.ScreenToW ...
- 设计模式之六大原则——接口隔离原则(ISP)
设计模式之六大原则——接口隔离原则(ISP) 转载于:http://www.cnblogs.com/muzongyan/archive/2010/08/04/1792528.html 接口隔离原则 ...
- springboot+redis
上篇整合了DB层,现在开始整合缓存层,使用redis. springboot驱动注解,使用spring注入JedisPool便可封装自己的redis工具类. package hello.configu ...
- Angular2 起步(1)
1.安装 nodejs(最新稳定版)https://nodejs.org/en/ 安装 typescript npm install -g typescript 安装 angular-cli(关于CL ...
- fatal error C1061: 编译器限制 : 块嵌套太深
VisualStudio开发过程中碰到C1061报错,查了MSDN,文档说明如下 从说明中我们明白这是由于我们的代码块嵌套太深,超过了编译器的限制.但我理解为应该是同一个域内块的数量太多,超过了编译器 ...
- 视觉机器学习笔记------CNN学习
卷积神经网络是第一个被成功训练的多层神经网络结构,具有较强的容错.自学习及并行处理能力. 一.基本原理 1.CNN算法思想 卷积神经网络可以看作为前馈网络的特例,主要在网络结构上对前馈网络进行简化和改 ...
- 使用天天模拟器开发Android应用
自带的模拟器太慢,Genymotion配置过于复杂,天天模拟器旧版本直接可用于调试,由于新版本的天大模拟器端口号被修改为6555,要想用于开发,需要使用ADB命令进行连接. 下载天天模拟器 天天模拟器 ...
- Ubuntu的安装与配置
一.Ubuntu的安装与配置 Ubuntu 快速下载地址 1.安装VMwareTools 系统安装后,工具栏"虚拟机"-->"安装VMwareTools" ...