IK分词器 github地址: https://github.com/medcl/elasticsearch-analysis-ik
/*****************************安装 java 部分 **************************************/
新手上路,有错勿喷
参考博客:http://www.ruanyifeng.com/blog/2017/08/elasticsearch.html
java下载地址: oracle.com -> download -> jdk for developer -> 选择版本
开始得安装java8
参照博客:https://www.cnblogs.com/lumama520/p/11058927.html
先创建安装目录:
mkdir /usr/local/java/
复制安装包 到java目录下
mv jdk.tar.gz /usr/local/java/
设置环境变量:
vim /etc/profile
export JAVA_HOME=/usr/local/java/jdk1.8.0_171
export JRE_HOME=${JAVA_HOME}/jre
export CLASSPATH=.:${JAVA_HOME}/lib:${JRE_HOME}/lib
export PATH=${JAVA_HOME}/bin:$PATH
source /etc/profile
使环境变量生效:
添加软连接:
ln -s /usr/local/java/bin/java /usr/bin/java
安装成功???
/**************************java 安装完成?? *******************************************************/
开始安装 es
Elastic 需要 Java 8 环境。如果你的机器还没安装 Java,可以参考这篇文章,注意要保证环境变量JAVA_HOME
正确设置。
$ wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.5.1.zip
$ unzip elasticsearch-5.5.1.zip
$ cd elasticsearch-5.5.1/
$ cd ./bin/
$ ./elasticsearch
报错,不能用root用户运行
切换用户,还是报错
参照博客:https://www.cnblogs.com/sonofelice/p/6937061.html
需要 首先在 root 用户下,把elastisearch 的权限赋值给到 非 root的用户下 比如 test
chown -R test:test elastisearch
ll 查看当前文件夹所属
之后再切换进入到 es/bin 目录 进行启动
打开另外窗口 进行访问
/******************************************本地浏览器访问虚拟机 9200 端口配置开始 **************/
这时候用虚拟机ip地址去访问,发现无法访问,
默认情况下,Elastic 只允许本机访问,如果需要远程访问,可以修改 Elastic 安装目录的config/elasticsearch.yml
文件,找到network.host
,将它的值改成0.0.0.0
,然后重新启动 Elastic。
上面代码中,设成0.0.0.0
让任何人都可以访问。线上服务不要这样设置,要设成具体的 IP。这个得划重点
设置完之后,再次运行报错:
这意思提示当前虚拟内存 太小?那就需要设置大一点
在当前用户下设置失败,权限拒绝,需要切换到root, 再次设置,完成
上述方法修改之后,如果重启虚拟机又需要设置,直接去 /etc/sysctl.conf文件最后添加一行
vm.max_map_count=262144
题外话:ould not be opened: failed to open stream: Permission denied 需要给该目录赋值权限
再次切换到普通用户,启动成功:
但是在本地上访问虚拟机ip地址的时候,访问失败
先查看本地端口是否开放:已经是处于监听中
先把当前的防火墙服务关闭试试 service iptables stop
这时候本地可以访问,但是这样把防火墙关掉就不太好,需要设置开放一下防火墙端口就好:
参考博客:https://www.cnblogs.com/kevin-yang123/p/9916572.html
iptables -A INPUT -ptcp --dport 9200 -j ACCEPT
service iptables save
再次刷新浏览器,可以访问到:
cat /etc/sysconfig/iptables 查看,刚刚配置的已经保存
写了一个php连接es的测试文档,比较单一,就当是做个笔记吧:后边再慢慢补全
地址:https://github.com/yangxiuwen/testEs.git
多次启动之后报错:
https://blog.csdn.net/Crazypokerk_/article/details/98057356
修改 es/config/jvm.options Xms512m 之后再次运行 可以
/******************************************本地浏览器访问虚拟机 9200 端口配置结束 **************/
一些概念:
Elastic 本质上是一个分布式数据库,允许多台服务器协同工作,每台服务器可以运行多个 Elastic 实例。
单个 Elastic 实例称为一个节点(node)。一组节点构成一个集群(cluster)。
Elastic 会索引所有字段,经过处理后写入一个反向索引(Inverted Index)。查找数据的时候,直接查找该索引。
所以,Elastic 数据管理的顶层单位就叫做 Index(索引)。它是单个数据库的同义词。每个 Index (即数据库)的名字必须是小写。
新建和删除 Index
新建 Index,可以直接向 Elastic 服务器发出 PUT 请求。下面的例子是新建一个名叫weather的 Index。
$ curl -X PUT 'localhost:9200/weather'
服务器返回一个 JSON 对象,里面的acknowledged字段表示操作成功。
{
"acknowledged":true,
"shards_acknowledged":true
}
然后,我们发出 DELETE 请求,删除这个 Index。
$ curl -X DELETE 'localhost:9200/weather'
中文分词设置
$ ./bin/elasticsearch-plugin install https://github.com/medcl/elasticsearch-analysis-ik/releases/download/v5.5.1/elasticsearch-analysis-ik-5.5.1.zip
查看当前已经安装的插件
/download/elasticsearch/bin/elasticsearch-plugin list
上面代码安装的是5.5.1版的插件,与 Elastic 5.5.1 配合使用。
接着,重新启动 Elastic,就会自动加载这个新安装的插件。
然后,新建一个 Index,指定需要分词的字段。这一步根据数据结构而异,下面的命令只针对本文。基本上,凡是需要搜索的中文字段,都要单独设置一下。
$ curl -X PUT 'localhost:9200/accounts' -d '
{
"mappings": {
"person": {
"properties": {
"user": {
"type": "text",
"analyzer": "ik_max_word",
"search_analyzer": "ik_max_word"
},
"title": {
"type": "text",
"analyzer": "ik_max_word",
"search_analyzer": "ik_max_word"
},
"desc": {
"type": "text",
"analyzer": "ik_max_word",
"search_analyzer": "ik_max_word"
}
}
}
}
}'
上面代码中,首先新建一个名称为accounts的 Index,里面有一个名称为person的 Type。person有三个字段。
user
title
desc
这三个字段都是中文,而且类型都是文本(text),所以需要指定中文分词器,不能使用默认的英文分词器。
Elastic 的分词器称为 analyzer。我们对每个字段指定分词器。
"user": {
"type": "text",
"analyzer": "ik_max_word",
"search_analyzer": "ik_max_word"
}
上面代码中,analyzer是字段文本的分词器,search_analyzer是搜索词的分词器。ik_max_word分词器是插件ik提供的,可以对文本进行最大数量的分词。
配置文件
IKAnalyzer.cfg.xml:用来配置自定义词库
main.dic: ik原生内置的中文词库,总共有27万多条,只要是这些单词,都会被分在一起
quantifier.dic:放了一些单位相关的词
suffix.dic: 放了一些后缀
surname.dic: 中国的姓氏
stopword.dic: 英文停用词
其实我不太懂,配置自定义词库的用处,但是需要摘抄一下,没准会用到。
我的配置文件具体的目录在 es/config/annlyzer/ 目录下,也有的可能在 es/plugin/ 吧
我配置了的分词配置
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">
<properties>
<comment>IK Analyzer 扩展配置</comment>
<!--用户可以在这里配置自己的扩展字典 -->
<entry key="ext_dict">yyy/test.dic</entry>
<!--用户可以在这里配置自己的扩展停止词字典-->
<entry key="ext_stopwords"></entry>
<!--用户可以在这里配置远程扩展字典 -->
<!-- <entry key="remote_ext_dict">words_location</entry> -->
<!--用户可以在这里配置远程扩展停止词字典-->
<!-- <entry key="remote_ext_stopwords">words_location</entry> -->
</properties>
~
~
IK分词器 操作,参考博客:https://blog.csdn.net/zhou870498/article/details/80501972
https://www.cnblogs.com/walter371/p/5197511.html
分词器的使用:https://www.jianshu.com/p/75efee4b645a
- ik_smart会将文本做比较粗粒度的切分。比如对中华人民共和国进行分词,会认为这就是一个词,结果就是一个中华人民共和国。
- 而ik_max_word则对文本做比较细粒度的切分,会出现各种长度的词。如果同样对中华人民共和国进行分词,会分出很多的词。
GET _analyze
{
"analyzer": "ik_max_word",
"text": "中华人民共和国"
}
{
"tokens":[
{
"token":"中华人民共和国",
"start_offset":0,
"end_offset":7,
"type":"CN_WORD",
"position":0
},
{
"token":"中华人民",
"start_offset":0,
"end_offset":4,
"type":"CN_WORD",
"position":1
},
{
"token":"中华",
"start_offset":0,
"end_offset":2,
"type":"CN_WORD",
"position":2
},
{
"token":"华人",
"start_offset":1,
"end_offset":3,
"type":"CN_WORD",
"position":3
},
{
"token":"人民共和国",
"start_offset":2,
"end_offset":7,
"type":"CN_WORD",
"position":4
},
{
"token":"人民",
"start_offset":2,
"end_offset":4,
"type":"CN_WORD",
"position":5
},
{
"token":"共和国",
"start_offset":4,
"end_offset":7,
"type":"CN_WORD",
"position":6
},
{
"token":"共和",
"start_offset":4,
"end_offset":6,
"type":"CN_WORD",
"position":7
},
{
"token":"国",
"start_offset":6,
"end_offset":7,
"type":"CN_CHAR",
"position":8
}
]
}
GET /index/type/_search
{
"query":{
"match": {
"title": { //这里需要匹配查询的字段值
"query": "那是什么地方",
"analyzer": "ik_smart" //用的分词器 这个是粗粒度 ik_max_word 是细粒度
}
}
}
}
得到结果
{
"took":2,
"timed_out":false,
"_shards":{
"total":5,
"successful":5,
"failed":0
},
"hits":{
"total":3,
"max_score":1.4088393,
"hits":[
{
"_index":"yxw",
"_type":"person",
"_id":"AXEq2PUqlLRImnZ_q__k",
"_score":1.4088393,
"_source":{
"user":"这是什么地方",
"title":"那是什么地方",
"desc":"这是在哪儿"
}
},
{
"_index":"yxw",
"_type":"person",
"_id":"AXEq2PVNlLRImnZ_q__l",
"_score":1.1537418,
"_source":{
"user":"这是什么地方",
"title":"那是什么地方",
"desc":"这是在哪儿"
}
},
{
"_index":"yxw",
"_type":"person",
"_id":"4",
"_score":0.96712893,
"_source":{
"user":"这是什么地方1",
"title":"那是什么地方2",
"desc":"这是在哪儿3"
}
}
]
}
}
数据操作:
这些内容全部都是复制博客: http://www.ruanyifeng.com/blog/2017/08/elasticsearch.html
向指定的 /Index/Type 发送 PUT 请求,就可以在 Index 里面新增一条记录。比如,向/accounts/person发送请求,就可以新增一条人员记录。
$ curl -X PUT 'localhost:9200/accounts/person/1' -d '
{
"user": "张三",
"title": "工程师",
"desc": "数据库管理"
}'
服务器返回的 JSON 对象,会给出 Index、Type、Id、Version 等信息。
{
"_index":"accounts",
"_type":"person",
"_id":"1",
"_version":1,
"result":"created",
"_shards":{"total":2,"successful":1,"failed":0},
"created":true
}
如果你仔细看,会发现请求路径是/accounts/person/1,最后的1是该条记录的 Id。它不一定是数字,任意字符串(比如abc)都可以。
新增记录的时候,也可以不指定 Id,这时要改成 POST 请求。
$ curl -X POST 'localhost:9200/accounts/person' -d '
{
"user": "李四",
"title": "工程师",
"desc": "系统管理"
}'
上面代码中,向/accounts/person发出一个 POST 请求,添加一个记录。这时,服务器返回的 JSON 对象里面,_id字段就是一个随机字符串。
{
"_index":"accounts",
"_type":"person",
"_id":"AV3qGfrC6jMbsbXb6k1p",
"_version":1,
"result":"created",
"_shards":{"total":2,"successful":1,"failed":0},
"created":true
}
注意,如果没有先创建 Index(这个例子是accounts),直接执行上面的命令,Elastic 也不会报错,而是直接生成指定的 Index。所以,打字的时候要小心,不要写错 Index 的名称。
5.2 查看记录
向/Index/Type/Id发出 GET 请求,就可以查看这条记录。
$ curl 'localhost:9200/accounts/person/1?pretty=true'
上面代码请求查看/accounts/person/1这条记录,URL 的参数pretty=true表示以易读的格式返回。
返回的数据中,found字段表示查询成功,_source字段返回原始记录。
{
"_index" : "accounts",
"_type" : "person",
"_id" : "1",
"_version" : 1,
"found" : true,
"_source" : {
"user" : "张三",
"title" : "工程师",
"desc" : "数据库管理"
}
}
如果 Id 不正确,就查不到数据,found字段就是false。
$ curl 'localhost:9200/weather/beijing/abc?pretty=true'
{
"_index" : "accounts",
"_type" : "person",
"_id" : "abc",
"found" : false
}
5.3 删除记录
删除记录就是发出 DELETE 请求。
$ curl -X DELETE 'localhost:9200/accounts/person/1'
这里先不要删除这条记录,后面还要用到。
5.4 更新记录
更新记录就是使用 PUT 请求,重新发送一次数据。
$ curl -X PUT 'localhost:9200/accounts/person/1' -d '
{
"user" : "张三",
"title" : "工程师",
"desc" : "数据库管理,软件开发"
}'
{
"_index":"accounts",
"_type":"person",
"_id":"1",
"_version":2,
"result":"updated",
"_shards":{"total":2,"successful":1,"failed":0},
"created":false
}
上面代码中,我们将原始数据从"数据库管理"改成"数据库管理,软件开发"。 返回结果里面,有几个字段发生了变化。
"_version" : 2,
"result" : "updated",
"created" : false
可以看到,记录的 Id 没变,但是版本(version)从1变成2,操作类型(result)从created变成updated,created字段变成false,因为这次不是新建记录。
六、数据查询
6.1 返回所有记录
使用 GET 方法,直接请求/Index/Type/_search,就会返回所有记录。
$ curl 'localhost:9200/accounts/person/_search'
{
"took":2,
"timed_out":false,
"_shards":{"total":5,"successful":5,"failed":0},
"hits":{
"total":2,
"max_score":1.0,
"hits":[
{
"_index":"accounts",
"_type":"person",
"_id":"AV3qGfrC6jMbsbXb6k1p",
"_score":1.0,
"_source": {
"user": "李四",
"title": "工程师",
"desc": "系统管理"
}
},
{
"_index":"accounts",
"_type":"person",
"_id":"1",
"_score":1.0,
"_source": {
"user" : "张三",
"title" : "工程师",
"desc" : "数据库管理,软件开发"
}
}
]
}
}
上面代码中,返回结果的 took字段表示该操作的耗时(单位为毫秒),timed_out字段表示是否超时,hits字段表示命中的记录,里面子字段的含义如下。
total:返回记录数,本例是2条。
max_score:最高的匹配程度,本例是1.0。
hits:返回的记录组成的数组。
返回的记录中,每条记录都有一个_score字段,表示匹配的程序,默认是按照这个字段降序排列。
6.2 全文搜索
Elastic 的查询非常特别,使用自己的查询语法,要求 GET 请求带有数据体。
$ curl 'localhost:9200/accounts/person/_search' -d '
{
"query" : { "match" : { "desc" : "软件" }}
}'
上面代码使用 Match 查询,指定的匹配条件是desc字段里面包含"软件"这个词。返回结果如下。
{
"took":3,
"timed_out":false,
"_shards":{"total":5,"successful":5,"failed":0},
"hits":{
"total":1,
"max_score":0.28582606,
"hits":[
{
"_index":"accounts",
"_type":"person",
"_id":"1",
"_score":0.28582606,
"_source": {
"user" : "张三",
"title" : "工程师",
"desc" : "数据库管理,软件开发"
}
}
]
}
}
Elastic 默认一次返回10条结果,可以通过size字段改变这个设置。
$ curl 'localhost:9200/accounts/person/_search' -d '
{
"query" : { "match" : { "desc" : "管理" }},
"size": 1
}'
上面代码指定,每次只返回一条结果。
还可以通过from字段,指定位移。
$ curl 'localhost:9200/accounts/person/_search' -d '
{
"query" : { "match" : { "desc" : "管理" }},
"from": 1,
"size": 1
}'
上面代码指定,从位置1开始(默认是从位置0开始),只返回一条结果。
6.3 逻辑运算
如果有多个搜索关键字, Elastic 认为它们是or关系。
$ curl 'localhost:9200/accounts/person/_search' -d '
{
"query" : { "match" : { "desc" : "软件 系统" }}
}'
上面代码搜索的是软件 or 系统。
如果要执行多个关键词的and搜索,必须使用布尔查询。
$ curl 'localhost:9200/accounts/person/_search' -d '
{
"query": {
"bool": {
"must": [
{ "match": { "desc": "软件" } },
{ "match": { "desc": "系统" } }
]
}
}
}'
附上翻译的es中文文档:https://es.xiaoleilu.com/054_Query_DSL/55_Request_body_search.html
在文档中对es的特性进行了很多详细的说法,我开始其实是一脸懵逼的,但是操作了一会,算是有一点理解。
但是对于es + Mysql ,这样怎么联合起来,还是比较懵逼。
据说可以搞个iK 分词器的热更新:
这是github IK分词官方介绍
相关博客: https://www.jianshu.com/p/38733c810855 ----》这博客的一段话需要修改 ,不改mvn assembly:assembly打包会报错
<plugin>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.7.29</version>
</plugin>
说得很详细,但是对我这种小白来说,还是费了一点周折,还得先在本地安装maven :https://maven.apache.org/
安装完成,打包
可能是依赖包没有的原因,打包失败:放弃这个方法
有相关博文,但是需要研究一下:https://cloud.tencent.com/developer/news/230527
/**************************安装 logstash **************************************/
这是安装 logstash 的一个es官方文档
https://www.elastic.co/guide/en/logstash/7.6/installing-logstash.html#_yum
首先也需要查看java是否安装
java -version
然后是根据自己的虚拟机来进行安装的方式:
比如我的centos
1, Download and install the public signing key: 安装key
rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch
2, Add the following in your /etc/yum.repos.d/ directory in a file with a .repo suffix, for example logstash.repo
添加相关的一个文件到 /etc/yum.repos.d/目录下 比如logstash.repo
内容如下:需要对应相关es版本最好
[logstash-7.x]
name=Elastic repository for 7.x packages
baseurl=https://artifacts.elastic.co/packages/7.x/yum
gpgcheck=1
gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch
enabled=1
autorefresh=1
type=rpm-md
3, And your repository is ready for use. You can install it with:
yum install logstash
4, 有警告信息
The repositories do not work with older rpm based distributions that still use RPM v3, like CentOS5.
无法在低版本的centos或者是rpm低版本 来安装
5,具体运行开始有文档:
https://www.elastic.co/guide/en/logstash/7.6/running-logstash.html
我的是:
systemctl start logstash
启动报错:相关博客:https://www.cnblogs.com/jsonhc/p/7562412.html
mkdir -p /usr/share/logstash/config/
ln -s /etc/logstash/* /usr/share/logstash/config
chown -R logstash:logstash /usr/share/logstash/config/
bin/logstash -e 'input { stdin { } } output { stdout {} }'
sudo /usr/share/logstash/bin/system-install /etc/logstash/startup.options systemd
配置系统启动服务时,java_home设置有问题
报错没有这个目录,去创建一个 touch /usr/bin/java chmod 755 /usr/bin/java
启动还是报错,