zoukankan      html  css  js  c++  java
  • es cat http://localhosts:9002/_cat/nodes?v

    http://localhosts:9002/_cat/nodes?v&h=http,version,jdk,disk.total,disk.used,disk.avail,disk.used_percent,heap.current,heap.percent,heap.max,ram.current,ram.percent,ram.max,master

    curl -XPUT "http://localhost:9002/_cluster/settings" -d'
    {
    "transient" : {
    "cluster.routing.allocation.enable" : "none"
    }
    }'

    curl -XPUT "http://localhost:9002/_cluster/settings" -d'
    {
    "transient" : {
    "cluster.routing.allocation.enable" : "all"
    }
    }'

    cluster.name: "xxx"
    node.name: "nodxxx"
    node.master: false
    node.data: true
    index.number_of_shards: 2
    index.number_of_replicas: 3
    discovery.zen.ping.timeout: 20s
    discovery.zen.ping.unicast.hosts: ["xxxx","xxxxx"]
    transport.tcp.port: 9003
    nsport.tcp.port: 9003
    http.port: 9002
    path.data: /home/esdata
    script.disable_dynamic: false
    network.publish_host: ip
    threadpool.bulk.type: fixed

  • 相关阅读:
    react 学习
    swiper
    日历插件
    插件 uploadify
    前端 websocket用法
    jQuery插件Highcharts
    可用于nodejs的SuperAgent(ajax API)
    git的基本命令
    自己对javascript闭包的了解
    函数中的this的四种绑定形式
  • 原文地址:https://www.cnblogs.com/gaoyuechen/p/10190735.html
Copyright © 2011-2022 走看看