2015-09-15 01:04:56 +00:00
|
|
|
---
|
2020-02-06 23:45:31 +00:00
|
|
|
layout: docs
|
|
|
|
page_title: 'Commands: server members'
|
2015-09-15 01:04:56 +00:00
|
|
|
description: >
|
2020-02-06 23:45:31 +00:00
|
|
|
The server members command is used to display a list of the known server
|
|
|
|
members and their status.
|
2015-09-15 01:04:56 +00:00
|
|
|
---
|
|
|
|
|
2018-03-22 17:56:06 +00:00
|
|
|
# Command: server members
|
2015-09-15 01:04:56 +00:00
|
|
|
|
2018-03-22 17:56:06 +00:00
|
|
|
The `server members` command displays a list of the known servers in the cluster
|
2015-09-15 01:04:56 +00:00
|
|
|
and their current status. Member information is provided by the gossip protocol,
|
|
|
|
which is only run on server nodes.
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
2019-10-22 13:44:00 +00:00
|
|
|
```plaintext
|
2018-03-22 17:56:06 +00:00
|
|
|
nomad server members [options]
|
2015-09-15 01:04:56 +00:00
|
|
|
```
|
|
|
|
|
2020-11-19 21:38:08 +00:00
|
|
|
If ACLs are enabled, this option requires a token with the `node:read`
|
|
|
|
capability.
|
|
|
|
|
2015-09-15 01:04:56 +00:00
|
|
|
## General Options
|
|
|
|
|
2020-11-19 18:02:48 +00:00
|
|
|
@include 'general_options_no_namespace.mdx'
|
2015-09-15 01:04:56 +00:00
|
|
|
|
2016-08-09 13:56:26 +00:00
|
|
|
## Server Members Options
|
2015-09-15 01:04:56 +00:00
|
|
|
|
2022-03-17 18:15:10 +00:00
|
|
|
- `-detailed` (<code>_deprecated_</code> use `-verbose` instead): Dump the
|
|
|
|
basic member information as well as the raw set of tags for each member. This
|
|
|
|
mode reveals additional information not displayed in the standard output
|
|
|
|
format.
|
|
|
|
|
|
|
|
- `-verbose`: Dump the basic member information as well as the raw set of tags
|
|
|
|
for each member. This mode reveals additional information not displayed in
|
|
|
|
the standard output format.
|
2015-09-15 01:04:56 +00:00
|
|
|
|
2015-09-15 03:24:04 +00:00
|
|
|
## Examples
|
|
|
|
|
|
|
|
Default view:
|
2015-09-15 01:04:56 +00:00
|
|
|
|
2020-05-18 20:53:06 +00:00
|
|
|
```shell-session
|
|
|
|
$ nomad server members
|
2022-03-17 18:15:10 +00:00
|
|
|
Name Address Port Status Leader Raft Version Build Datacenter Region
|
|
|
|
server-1.global 10.0.0.8 4648 alive true 3 1.3.0 dc1 global
|
|
|
|
server-2.global 10.0.0.9 4648 alive false 3 1.3.0 dc1 global
|
|
|
|
server-3.global 10.0.0.10 4648 alive false 3 1.3.0 dc1 global
|
2015-09-15 01:04:56 +00:00
|
|
|
```
|
2015-09-15 03:24:04 +00:00
|
|
|
|
2022-03-17 18:15:10 +00:00
|
|
|
Verbose view:
|
2015-09-15 03:24:04 +00:00
|
|
|
|
2020-05-18 20:53:06 +00:00
|
|
|
```shell-session
|
2022-03-17 18:15:10 +00:00
|
|
|
$ nomad server members -verbose
|
|
|
|
Name Address Port Status Leader Protocol Raft Version Build Datacenter Region Tags
|
|
|
|
server-1.global 10.0.0.8 4648 alive true 2 3 1.3.0 dc1 global id=46122039-7c4d-4647-673a-81786bce2c23,rpc_addr=10.0.0.8,role=nomad,region=global,raft_vsn=3,expect=3,dc=dc1,build=1.3.0,port=4647
|
|
|
|
server-2.global 10.0.0.9 4648 alive false 2 3 1.3.0 dc1 global id=04594bee-fec9-4cec-f308-eebe82025ae7,dc=dc1,expect=3,rpc_addr=10.0.0.9,raft_vsn=3,port=4647,role=nomad,region=global,build=1.3.0
|
|
|
|
server-3.global 10.0.0.10 4648 alive false 2 3 1.3.0 dc1 global region=global,dc=dc1,rpc_addr=10.0.0.10,raft_vsn=3,build=1.3.0,expect=3,id=59542f6c-fb0e-50f1-4c9f-98bb593e9fe8,role=nomad,port=4647
|
2015-09-15 03:24:04 +00:00
|
|
|
```
|