162k views
1 vote
How do you re-initialize the swarm so it does not attempt to reconnect to old nodes?

a) docker swarm leave --force
b) docker swarm init --force-new-cluster
c) docker swarm init --force
d) docker swarm reset --force

User Crazybilly
by
8.0k points

1 Answer

7 votes

To re-initialize a swarm in Docker, use the command 'docker swarm init --force-new-cluster' which creates a fresh cluster without reconnecting to old nodes.

To re-initialize a Docker swarm so that it does not attempt to reconnect to old nodes, you should use the command docker swarm init --force-new-cluster. This will create a new swarm cluster and prevent the Docker daemon from attempting to connect to any previous nodes that were part of the old swarm. The command docker swarm leave --force is used when you want to remove a node from the swarm, but it does not create a new cluster. The options docker swarm init --force and docker swarm reset --force are not valid commands in Docker.

User Imelda
by
8.7k points