2016-10-14 18:30:36 -04:00
|
|
|
---
|
|
|
|
title: "swarm leave"
|
|
|
|
description: "The swarm leave command description and usage"
|
2016-11-03 18:48:30 -04:00
|
|
|
keywords: "swarm, leave"
|
2016-10-14 18:30:36 -04:00
|
|
|
---
|
2016-06-13 22:57:19 -04:00
|
|
|
|
2016-10-19 13:25:45 -04:00
|
|
|
<!-- This file is maintained within the docker/docker Github
|
|
|
|
repository at https://github.com/docker/docker/. Make all
|
|
|
|
pull requests against that repo. If you see this file in
|
|
|
|
another repository, consider it read-only there, as it will
|
|
|
|
periodically be overwritten by the definitive file. Pull
|
|
|
|
requests which include edits to this file in other repositories
|
|
|
|
will be rejected.
|
|
|
|
-->
|
|
|
|
|
2016-06-13 22:57:19 -04:00
|
|
|
# swarm leave
|
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
```markdown
|
2016-11-09 01:22:06 -05:00
|
|
|
Usage: docker swarm leave [OPTIONS]
|
2016-06-13 22:57:19 -04:00
|
|
|
|
2016-12-16 09:10:20 -05:00
|
|
|
Leave the swarm
|
2016-06-13 22:57:19 -04:00
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
Options:
|
2016-11-09 01:22:06 -05:00
|
|
|
-f, --force Force this node to leave the swarm, ignoring warnings
|
2016-07-07 14:43:18 -04:00
|
|
|
--help Print usage
|
|
|
|
```
|
2016-06-13 22:57:19 -04:00
|
|
|
|
2016-09-01 18:38:25 -04:00
|
|
|
When you run this command on a worker, that worker leaves the swarm.
|
2016-06-13 22:57:19 -04:00
|
|
|
|
2016-09-01 18:38:25 -04:00
|
|
|
You can use the `--force` option to on a manager to remove it from the swarm.
|
|
|
|
However, this does not reconfigure the swarm to ensure that there are enough
|
|
|
|
managers to maintain a quorum in the swarm. The safe way to remove a manager
|
|
|
|
from a swarm is to demote it to a worker and then direct it to leave the quorum
|
|
|
|
without using `--force`. Only use `--force` in situations where the swarm will
|
|
|
|
no longer be used after the manager leaves, such as in a single-node swarm.
|
|
|
|
|
|
|
|
Consider the following swarm, as seen from the manager:
|
2016-06-13 22:57:19 -04:00
|
|
|
```bash
|
|
|
|
$ docker node ls
|
2016-07-20 14:15:08 -04:00
|
|
|
ID HOSTNAME STATUS AVAILABILITY MANAGER STATUS
|
|
|
|
7ln70fl22uw2dvjn2ft53m3q5 worker2 Ready Active
|
2016-09-01 18:38:25 -04:00
|
|
|
dkp8vy1dq1kxleu9g4u78tlag worker1 Ready Active
|
2016-07-20 14:15:08 -04:00
|
|
|
dvfxp4zseq4s0rih1selh0d20 * manager1 Ready Active Leader
|
2016-06-13 22:57:19 -04:00
|
|
|
```
|
|
|
|
|
2016-09-01 18:38:25 -04:00
|
|
|
To remove `worker2`, issue the following command from `worker2` itself:
|
2016-06-13 22:57:19 -04:00
|
|
|
```bash
|
|
|
|
$ docker swarm leave
|
|
|
|
Node left the default swarm.
|
|
|
|
```
|
2016-09-28 23:19:00 -04:00
|
|
|
To remove an inactive node, use the [`node rm`](node_rm.md) command instead.
|
2016-06-13 22:57:19 -04:00
|
|
|
|
|
|
|
## Related information
|
|
|
|
|
2016-09-01 18:38:25 -04:00
|
|
|
* [node rm](node_rm.md)
|
2016-06-13 22:57:19 -04:00
|
|
|
* [swarm init](swarm_init.md)
|
|
|
|
* [swarm join](swarm_join.md)
|
2016-12-19 12:55:51 -05:00
|
|
|
* [swarm join-token](swarm_join_token.md)
|
|
|
|
* [swarm unlock](swarm_unlock.md)
|
|
|
|
* [swarm unlock-key](swarm_unlock_key.md)
|
2016-06-13 22:57:19 -04:00
|
|
|
* [swarm update](swarm_update.md)
|