码迷,mamicode.com
首页 > 其他好文 > 详细

ElasticSearch集群安装部署

时间:2019-09-24 10:40:56      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:yum   install   file   plugins   lua   ret   方式   groov   ica   

0 集群搭建

1.安装unzip yum install unzip
2.所有集群节点创建新用户 useradd el
3.所有集群节点给el用户设置密码passwd el方便记忆使用的rootroot
技术图片
4.所有集群节点创建安装目录和赋予使用权限--》并转换用户

mkdir -p /opt/es
ll /opt/
chown el:el /opt/es
ll /opt/
su el

技术图片
技术图片
5.上传安装部署包到master
技术图片
6.解压到刚刚创建的目录unzip elasticsearch-2.2.1.zip -d /opt/es/(注意是否是普通用户解压的)
技术图片
7.修改conf

cd elasticsearch-2.2.1/config/
vim elasticsearch.yml

技术图片
技术图片
末尾增加防脑裂:

discovery.zen.ping.multicast.enabled: false 
discovery.zen.ping.unicast.hosts: ["192.168.74.10","192.168.74.11", "192.168.74.12"]
discovery.zen.ping_timeout: 120s
client.transport.ping_timeout: 60s

技术图片
8.目前已经配置好了,但是不忙分发,加个可视化插件
技术图片
技术图片
9.分发(输入yes再输入上面设置的el密码)
技术图片

scp -r elasticsearch-2.2.1/ el@slave1:`pwd`
scp -r elasticsearch-2.2.1/ el@slave2:`pwd`

10.修改2个从机器的配置文件

vim /opt/es/elasticsearch-2.2.1/config/elasticsearch.yml
  • slave1
    技术图片
    技术图片
  • slave2
    技术图片
    技术图片
    11.配置环境变量
vim ~/.bashrc


#Elasticsearch
EL_HOME=/opt/es/elasticsearch-2.2.1
PATH=$PATH:$EL_HOME/bin

source ~/.bashrc

12.集群所有节点执行脚本启动el集群
技术图片

13.如果能看见如下信息就是启动成功了

  • master
    技术图片
  • slave1
    技术图片
  • slave2
    技术图片

14.使用浏览器查看(对比原生态的和插件的)
技术图片
技术图片

1 IK分词器安装

1.找到安装el的目录下的插件目录,上传IK包
技术图片
2.解压unzip elasticsearch-analysis-ik-1.8.0.zip
技术图片
3.修改配置文件vim + plugin-descriptor.properties
技术图片
4.回到plugins目录,分发

scp -r ik/ el@slave1:`pwd`
scp -r ik/ el@slave2:`pwd`

2 使用

2.1 CURL命令

  • 简单认为是可以在命令行下访问url的一个工具
  • curl是利用URL语法在命令行方式下工作的开源文件传输工具,使用curl可以简单实现常见的get/post请求。
  • curl
    • -X 指定http请求的方法(HEAD GET POST PUT DELETE)
    • -d 指定要传输的数据

2.1.1创建索引库curl -XPUT http://192.168.74.10:9200/hello/

技术图片
技术图片

2.1.2删除索引库curl -XDELETE http://192.168.74.10:9200/hello1/

2.1.3数据操作-普通添加

curl -XPOST http://192.168.74.10:9200/hello/employee -d ‘
{
 "first_name" : "bin",
 "age" : 33,
 "about" : "I love to go rock climbing",
 "interests": [ "sports", "music" ]
}

技术图片
技术图片

curl -XPOST http://192.168.74.10:9200/hello/employee -d ‘
{
 "first_name" : "gob bin",
 "age" : 43,
 "about" : "I love to go rock climbing",
 "interests": [ "sports", "music" ]
}

技术图片

2.1.4数据操作-追加列

curl -XPOST http://192.168.74.10:9200/hello/employee -d ‘
{
 "first_name" : "pablo",
 "age" : 33,
 "about" : "I love to go rock climbing",
 "interests": [ "sports", "music" ],
 "sex": "man",
 "last_name" : "bin"
}

技术图片

2.1.5数据操作-put指定id添加(如果是新的id就是创建,如果是老的id那么更新)

curl -XPUT http://192.168.74.10:9200/hello/employee/1 -d ‘
{
 "first_name" : "god bin",
 "last_name" : "pang",
 "age" : 42,
 "about" : "I love to go rock climbing",
 "interests": [ "sports", "music" ]
}

技术图片

2.1.6数据操作-根据document的id来获取数据

curl -XGET http://192.168.74.10:9200/hello/employee/1
curl -XGET http://192.168.74.10:9200/hello/employee/1?pretty

技术图片

2.1.7数据操作-根据field来查询数据:

curl -XGET http://192.168.74.10:9200/hello/employee/_search?q=first_name="bin"
技术图片

2.1.8数据操作-根据field来查询数据:match

curl -XGET http://192.168.74.10:9200/hello/employee/_search?pretty -d ‘
{
 "query":
  {"match":
   {"first_name":"bin"}
  }
}

技术图片

  • 对多个field发起查询:multi_match
curl -XGET http://192.168.74.10:9200/hello/employee/_search?pretty -d ‘
{
 "query":
  {"multi_match":
   {
    "query":"bin",
    "fields":["last_name","first_name"],
    "operator":"and"
   }
  }
}

技术图片

2.1.9数据操作-多个term对多个field发起查询:bool(boolean)

  • 组合查询,must,must_not,should
  • must + must : 交集
  • must +must_not :差集
  • should+should : 并集
curl -XGET http://192.168.74.10:9200/hello/employee/_search?pretty -d ‘
{
 "query":
  {"bool" :
   {
    "must" : 
     {"match":
      {"first_name":"bin"}
     },
    "must" : 
     {"match":
      {"age":33}
     }
   }
  }
}‘

curl -XGET http://192.168.74.10:9200/hello/employee/_search?pretty -d ‘
{
 "query":
  {"bool" :
   {
    "must" : 
     {"match":
      {"first_name":"bin"}
     },
    "must_not" : 
     {"match":
      {"age":33}
     }
   }
  }
}‘

curl -XGET http://192.168.74.10:9200/hello/employee/_search?pretty -d ‘
{
 "query":
  {"bool" :
   {
    "must_not" : 
     {"match":
      {"first_name":"bin"}
     },
    "must_not" : 
     {"match":
      {"age":33}
     }
   }
  }
}‘

2.1.10数据操作-区间查询

查询first_name=bin的,年龄不能在20岁到33岁之间的

curl -XGET http://192.168.74.10:9200/hello/employee/_search -d ‘
{
 "query":
  {"bool" :
   {
   "must" :
    {"term" : 
     { "first_name" : "bin" }
    }
   ,
   "must_not" : 
    {"range":
     {"age" : { "from" : 20, "to" : 33 }
    }
   }
   }
  }
}

2.1.11修改配置

curl -XPUT ‘http://192.168.74.10:9200/test2/‘ -d‘{"settings":{"number_of_replicas":2}}

技术图片

curl -XPUT ‘http://192.168.74.10:9200/test3/‘ -d‘{"settings":{"number_of_shards":3,"number_of_replicas":3}}

技术图片

ElasticSearch集群安装部署

标签:yum   install   file   plugins   lua   ret   方式   groov   ica   

原文地址:https://www.cnblogs.com/chen8023miss/p/11576723.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!