OpenSearch/docs/reference/cat/master.asciidoc

37 lines
1.1 KiB
Plaintext
Raw Normal View History

2013-11-14 20:14:39 -05:00
[[cat-master]]
== cat master
2013-11-14 20:14:39 -05:00
`master` doesn't have any extra options. It simply displays the
master's node ID, bound IP address, and node name. For example:
2013-11-14 20:14:39 -05:00
[source,js]
2013-11-14 20:14:39 -05:00
--------------------------------------------------
GET /_cat/master?v
--------------------------------------------------
// CONSOLE
might respond:
[source,txt]
--------------------------------------------------
id host ip node
YzWoH_2BT-6UjVGDyPdqYg 127.0.0.1 127.0.0.1 YzWoH_2
2013-11-14 20:14:39 -05:00
--------------------------------------------------
// TESTRESPONSE[s/YzWoH_2.+/.+/ _cat]
2013-11-14 20:14:39 -05:00
This information is also available via the `nodes` command, but this
is slightly shorter when all you want to do, for example, is verify
all nodes agree on the master:
[source,sh]
2013-11-14 20:14:39 -05:00
--------------------------------------------------
% 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
2013-11-14 20:14:39 -05:00
[2] 19:16:37 [SUCCESS] es2.vm
Ntgn2DcuTjGuXlhKDUD4vA 192.168.56.30 H5dfFeA
2013-11-14 20:14:39 -05:00
[3] 19:16:37 [SUCCESS] es1.vm
Ntgn2DcuTjGuXlhKDUD4vA 192.168.56.30 H5dfFeA
2013-11-14 20:14:39 -05:00
--------------------------------------------------
// NOTCONSOLE