cat master(查看主节点)

作者: 菜花_Q | 来源:发表于2018-03-29 16:18 被阅读2次

    官网地址:cat master | Elasticsearch Reference [5.5] | Elastic

    cat master

    master 没有任何额外的选项。它只显示主节点ID、绑定IP地址和节点名。例如:

    GET /_cat/master?v

    可能返回:

    id host ip node

    YzWoH_2BT-6UjVGDyPdqYg 127.0.0.1 127.0.0.1 YzWoH_2

    这个信息也可以通过节点命令获得,但是当你想要做的只是验证所有节点在主节点上的一致时,这就稍微短了一些。

    % pssh -i -h list.of.cluster.hosts curl -s localhost:9200/_cat/master

    [1] 19:16:37 [SUCCESS] es3.vm

    Ntgn2DcuTjGuXlhKDUD4vA 192.168.56.30 H5dfFeA

    [2] 19:16:37 [SUCCESS] es2.vm

    Ntgn2DcuTjGuXlhKDUD4vA 192.168.56.30 H5dfFeA

    [3] 19:16:37 [SUCCESS] es1.vm

    Ntgn2DcuTjGuXlhKDUD4vA 192.168.56.30 H5dfFeA

    相关文章

      网友评论

        本文标题:cat master(查看主节点)

        本文链接:https://www.haomeiwen.com/subject/angmcftx.html