2017-02-25 00:55:44 +00:00
|
|
|
---
|
2020-09-01 15:14:13 +00:00
|
|
|
layout: commands
|
2020-04-07 18:55:19 +00:00
|
|
|
page_title: 'Commands: Operator Autopilot'
|
2020-04-13 18:40:26 +00:00
|
|
|
sidebar_title: autopilot
|
2017-02-25 00:55:44 +00:00
|
|
|
description: >
|
2020-04-07 18:55:19 +00:00
|
|
|
The operator autopilot subcommand is used to view and modify Consul's
|
|
|
|
Autopilot configuration.
|
2017-02-25 00:55:44 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
# Consul Operator Autopilot
|
|
|
|
|
|
|
|
Command: `consul operator autopilot`
|
|
|
|
|
|
|
|
The Autopilot operator command is used to interact with Consul's Autopilot subsystem. The
|
2020-09-01 15:14:13 +00:00
|
|
|
command can be used to view or modify the current Autopilot configuration. See the
|
|
|
|
[Autopilot Guide](https://learn.hashicorp.com/consul/day-2-operations/autopilot) for more information about Autopilot.
|
2017-02-25 00:55:44 +00:00
|
|
|
|
|
|
|
```text
|
|
|
|
Usage: consul operator autopilot <subcommand> [options]
|
|
|
|
|
|
|
|
The Autopilot operator command is used to interact with Consul's Autopilot
|
|
|
|
subsystem. The command can be used to view or modify the current configuration.
|
|
|
|
|
|
|
|
Subcommands:
|
|
|
|
|
|
|
|
get-config Display the current Autopilot configuration
|
|
|
|
set-config Modify the current Autopilot configuration
|
|
|
|
```
|
|
|
|
|
|
|
|
## get-config
|
|
|
|
|
2020-11-11 18:19:02 +00:00
|
|
|
This command displays the current autopilot configuration.
|
2017-02-25 00:55:44 +00:00
|
|
|
|
|
|
|
Usage: `consul operator autopilot get-config [options]`
|
|
|
|
|
|
|
|
#### API Options
|
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
@include 'http_api_options_client.mdx'
|
2020-04-07 23:56:08 +00:00
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
@include 'http_api_options_server.mdx'
|
2017-02-25 00:55:44 +00:00
|
|
|
|
2020-11-11 18:19:02 +00:00
|
|
|
### Command Output
|
2017-02-25 00:55:44 +00:00
|
|
|
|
2020-11-11 18:19:02 +00:00
|
|
|
```sh
|
|
|
|
$ consul operator autopilot get-config
|
2017-02-28 22:23:14 +00:00
|
|
|
CleanupDeadServers = true
|
2017-03-01 22:04:40 +00:00
|
|
|
LastContactThreshold = 200ms
|
|
|
|
MaxTrailingLogs = 250
|
|
|
|
ServerStabilizationTime = 10s
|
2017-03-21 23:36:44 +00:00
|
|
|
RedundancyZoneTag = ""
|
|
|
|
DisableUpgradeMigration = false
|
2017-07-18 21:01:21 +00:00
|
|
|
UpgradeMigrationTag = ""
|
2017-02-25 00:55:44 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
## set-config
|
|
|
|
|
|
|
|
Modifies the current Autopilot configuration.
|
|
|
|
|
|
|
|
Usage: `consul operator autopilot set-config [options]`
|
|
|
|
|
|
|
|
#### API Options
|
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
@include 'http_api_options_client.mdx'
|
2020-04-07 23:56:08 +00:00
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
@include 'http_api_options_server.mdx'
|
2017-02-25 00:55:44 +00:00
|
|
|
|
|
|
|
#### Command Options
|
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
- `-cleanup-dead-servers` - Specifies whether to enable automatic removal of dead servers
|
|
|
|
upon the successful joining of new servers to the cluster. Must be one of `[true|false]`.
|
2017-02-25 00:55:44 +00:00
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
- `-last-contact-threshold` - Controls the maximum amount of time a server can go without contact
|
|
|
|
from the leader before being considered unhealthy. Must be a duration value such as `200ms`.
|
2017-03-01 22:04:40 +00:00
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
- `-max-trailing-logs` - Controls the maximum number of log entries that a server can trail
|
|
|
|
the leader by before being considered unhealthy.
|
2017-03-01 22:04:40 +00:00
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
- `-min-quorum` - Sets the minimum number of servers required in a cluster
|
|
|
|
before autopilot is allowed to prune dead servers.
|
2020-02-03 09:59:53 +00:00
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
- `-server-stabilization-time` - Controls the minimum amount of time a server must be stable in
|
|
|
|
the 'healthy' state before being added to the cluster. Only takes effect if all servers are
|
|
|
|
running Raft protocol version 3 or higher. Must be a duration value such as `10s`.
|
2017-03-01 22:04:40 +00:00
|
|
|
|
2020-04-23 22:13:18 +00:00
|
|
|
- `-disable-upgrade-migration` <EnterpriseAlert inline /> - Controls whether Consul will avoid promoting
|
2020-04-07 18:55:19 +00:00
|
|
|
new servers until it can perform a migration. Must be one of `[true|false]`.
|
2017-03-21 23:36:44 +00:00
|
|
|
|
2020-04-23 22:13:18 +00:00
|
|
|
- `-redundancy-zone-tag` <EnterpriseAlert inline /> - Controls the [`-node-meta`](/docs/agent/options#_node_meta)
|
2020-04-07 18:55:19 +00:00
|
|
|
key name used for separating servers into different redundancy zones.
|
2017-03-21 23:36:44 +00:00
|
|
|
|
2020-04-23 22:13:18 +00:00
|
|
|
- `-upgrade-version-tag` <EnterpriseAlert inline /> - Controls the [`-node-meta`](/docs/agent/options#_node_meta)
|
2020-04-07 18:55:19 +00:00
|
|
|
tag to use for version info when performing upgrade migrations. If left blank, the Consul version will be used.
|
2017-07-18 21:01:21 +00:00
|
|
|
|
2020-11-11 18:19:02 +00:00
|
|
|
### Command Output
|
2017-02-25 00:55:44 +00:00
|
|
|
|
2020-11-11 18:19:02 +00:00
|
|
|
```sh
|
|
|
|
$ consul operator autopilot set-config -min-quorum=3
|
2017-02-25 00:55:44 +00:00
|
|
|
Configuration updated!
|
|
|
|
```
|
|
|
|
|
|
|
|
The return code will indicate success or failure.
|
2020-11-11 18:19:02 +00:00
|
|
|
|
|
|
|
## state
|
|
|
|
|
|
|
|
This command displays the current autopilot state.
|
|
|
|
|
|
|
|
Usage: `consul operator autopilot state [options]`
|
|
|
|
|
|
|
|
#### API Options
|
|
|
|
|
|
|
|
@include 'http_api_options_client.mdx'
|
|
|
|
|
|
|
|
@include 'http_api_options_server.mdx'
|
|
|
|
|
|
|
|
#### Command Options
|
|
|
|
|
|
|
|
- `-format` - Specifies the output format. Must be one of `[pretty|json]` and it defaults to `pretty`.
|
|
|
|
|
|
|
|
#### Command Output
|
|
|
|
|
|
|
|
```sh
|
|
|
|
$ consul operator autopilot state
|
|
|
|
Healthy: true
|
|
|
|
Failure Tolerance: 1
|
|
|
|
Optimistic Failure Tolerance: 0
|
|
|
|
Leader: 79324811-9588-4311-b208-f272e38aaabf
|
|
|
|
Voters:
|
|
|
|
79324811-9588-4311-b208-f272e38aaabf
|
|
|
|
ef8aee9a-f9d6-4ec4-b383-aac956bdb80f
|
|
|
|
ae84aefb-a303-4734-8739-5c102d4ee2d9
|
|
|
|
Servers:
|
|
|
|
79324811-9588-4311-b208-f272e38aaabf
|
|
|
|
Name: node1
|
|
|
|
Address: 198.18.0.1:8300
|
|
|
|
Version: 1.9.0
|
|
|
|
Status: leader
|
|
|
|
Node Type: voter
|
|
|
|
Node Status: alive
|
|
|
|
Healthy: true
|
|
|
|
Last Contact: 0s
|
|
|
|
Last Term: 3
|
|
|
|
Last Index: 42
|
|
|
|
Meta
|
|
|
|
"foo": "bar"
|
|
|
|
ae84aefb-a303-4734-8739-5c102d4ee2d9
|
|
|
|
Name: node3
|
|
|
|
Address: 198.18.0.3:8300
|
|
|
|
Version: 1.9.0
|
|
|
|
Status: voter
|
|
|
|
Node Type: voter
|
|
|
|
Node Status: alive
|
|
|
|
Healthy: true
|
|
|
|
Last Contact: 2ms
|
|
|
|
Last Term: 3
|
|
|
|
Last Index: 39
|
|
|
|
Meta
|
|
|
|
"baz": "foo"
|
|
|
|
ef8aee9a-f9d6-4ec4-b383-aac956bdb80f
|
|
|
|
Name: node2
|
|
|
|
Address: 198.18.0.2:8300
|
|
|
|
Version: 1.9.0
|
|
|
|
Status: voter
|
|
|
|
Node Type: voter
|
|
|
|
Node Status: alive
|
|
|
|
Healthy: true
|
|
|
|
Last Contact: 1ms
|
|
|
|
Last Term: 3
|
|
|
|
Last Index: 41
|
|
|
|
Meta
|
|
|
|
"bar": "baz"
|
|
|
|
```
|