es集群安装配置及常用命令
Posted shangshanyang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了es集群安装配置及常用命令相关的知识,希望对你有一定的参考价值。
elasticsearch 安装 一、系统环境 操作系统:CentOS Linux release 7.3 elasticsearch:elasticsearch-7.0.0 修改/etc/hosts 192.168.1.12 es1 node2 node2.xkq.com 192.168.1.13 es2 node3 node3.xkq.com 192.168.1.14 es3 node4 node4.xkq.com vi /etc/security/limits.conf es - nofile 65535 es soft nproc 65535 es hard nproc 65535 ulimit -a #查看当前用户的资源限制 ulimit #暂时修改,切换到该用户es,ulimit -n 65535 配置虚拟内存 sysctl -w vm.max_map_count=262144 #临时修改该值 vim /etc/sysctl.conf #永久修改 vm.max_map_count=262144 配置好java 二、安装配置 useradd es su - es tar -zxvf elasticsearch-7.0.0-linux-x86_64.tar.gz -C /usr/local/ cd /usr/local ln -s elasticsearch-7.0.0 es7 vi /usr/local/es7/config/elasticsearch.yml cluster.name: es-cluster node.name: es1 network.host: 0.0.0.0#允许外部访问的地址 discovery.seed_hosts: ["es1", "es2","es3"] cluster.initial_master_nodes: ["es1", "es2","es3"] http.cors.enabled: true http.cors.allow-origin: "*" 三、启动 /usr/local/es/bin/elasticsearch -d 四、常用命令 (1)、_cat操作 _cat系列提供了一系列查询elasticsearch集群状态的接口。你可以通过执行 curl -XGET localhost:9200/_cat 获取所有_cat系列的操作 /_cat/allocation /_cat/shards /_cat/shards/{index} /_cat/master /_cat/nodes /_cat/indices /_cat/indices/{index} /_cat/segments /_cat/segments/{index} /_cat/count /_cat/count/{index} /_cat/recovery /_cat/recovery/{index} /_cat/health /_cat/pending_tasks /_cat/aliases /_cat/aliases/{alias} /_cat/thread_pool /_cat/plugins /_cat/fielddata /_cat/fielddata/{fields} (2):_cluster系列 1、查询设置集群状态 curl -XGET localhost:9200/_cluster/health?pretty=true pretty=true表示格式化输出 level=indices 表示显示索引状态 level=shards 表示显示分片信息 2、curl -XGET localhost:9200/_cluster/stats?pretty=true 显示集群系统信息,包括CPU JVM等等 3、curl -XGET localhost:9200/_cluster/state?pretty=true 集群的详细信息。包括节点、分片等。 3、curl -XGET localhost:9200/_cluster/pending_tasks?pretty=true 获取集群堆积的任务 3、修改集群配置 举例: curl -XPUT localhost:9200/_cluster/settings -d ‘{ “persistent” : { “discovery.zen.minimum_master_nodes” : 2 } }’ transient 表示临时的,persistent表示永久的 4、curl -XPOST ‘localhost:9200/_cluster/reroute’ -d ‘xxxxxx’ 对shard的手动控制,参考http://zhaoyanblog.com/archives/687.html 5、关闭节点 关闭指定192.168.1.1节点 curl -XPOST ‘http://192.168.1.1:9200/_cluster/nodes/_local/_shutdown’ curl -XPOST ‘http://localhost:9200/_cluster/nodes/192.168.1.1/_shutdown’ 关闭主节点 curl -XPOST ‘http://localhost:9200/_cluster/nodes/_master/_shutdown’ 关闭整个集群 $ curl -XPOST ‘http://localhost:9200/_shutdown?delay=10s’ $ curl -XPOST ‘http://localhost:9200/_cluster/nodes/_shutdown’ $ curl -XPOST ‘http://localhost:9200/_cluster/nodes/_all/_shutdown’ delay=10s表示延迟10秒关闭 (3):_nodes系列 curl -XGET ‘http://localhost:9200/_nodes/stats?pretty=true’ curl -XGET ‘http://localhost:9200/_nodes/192.168.1.2/stats?pretty=true’ curl -XGET ‘http://localhost:9200/_nodes/process’ curl -XGET ‘http://localhost:9200/_nodes/_all/process’ curl -XGET ‘http://localhost:9200/_nodes/192.168.1.2,192.168.1.3/jvm,process’ curl -XGET ‘http://localhost:9200/_nodes/192.168.1.2,192.168.1.3/info/jvm,process’ curl -XGET ‘http://localhost:9200/_nodes/192.168.1.2,192.168.1.3/_all curl -XGET ‘http://localhost:9200/_nodes/hot_threads (4)索引操作 http://localhost:9200/_cat/indices? 1、获取索引 curl -XGET ‘http://localhost:9200/{index}/{type}/{id}’ 2、索引数据 curl -XPOST ‘http://localhost:9200/{index}/{type}/{id}’ -d’{“a”:”avalue”,”b”:”bvalue”}’ 3、删除索引 curl -XDELETE ‘http://localhost:9200/{index}/{type}/{id}’ 4、设置mapping 5、获取mapping curl -XGET http://localhost:9200/{index}/{type}/_mapping 6、搜索
以上是关于es集群安装配置及常用命令的主要内容,如果未能解决你的问题,请参考以下文章