2017-10-17 11:28:51 +00:00
|
|
|
package removepeer
|
2017-02-15 21:30:07 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/hashicorp/consul/api"
|
2017-10-17 06:28:35 +00:00
|
|
|
"github.com/hashicorp/consul/command/flags"
|
|
|
|
"github.com/mitchellh/cli"
|
2017-02-15 21:30:07 +00:00
|
|
|
)
|
|
|
|
|
2017-10-17 06:28:35 +00:00
|
|
|
func New(ui cli.Ui) *cmd {
|
|
|
|
c := &cmd{UI: ui}
|
|
|
|
c.init()
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
|
|
|
type cmd struct {
|
|
|
|
UI cli.Ui
|
|
|
|
flags *flag.FlagSet
|
|
|
|
http *flags.HTTPFlags
|
2017-10-17 13:44:20 +00:00
|
|
|
help string
|
2017-10-11 12:51:18 +00:00
|
|
|
|
|
|
|
// flags
|
|
|
|
address string
|
|
|
|
id string
|
|
|
|
}
|
|
|
|
|
2017-10-17 06:28:35 +00:00
|
|
|
func (c *cmd) init() {
|
|
|
|
c.flags = flag.NewFlagSet("", flag.ContinueOnError)
|
|
|
|
c.flags.StringVar(&c.address, "address", "",
|
2017-10-11 12:51:18 +00:00
|
|
|
"The address to remove from the Raft configuration.")
|
2017-10-17 06:28:35 +00:00
|
|
|
c.flags.StringVar(&c.id, "id", "",
|
2017-10-11 12:51:18 +00:00
|
|
|
"The ID to remove from the Raft configuration.")
|
2017-02-15 21:30:07 +00:00
|
|
|
|
2017-10-17 06:28:35 +00:00
|
|
|
c.http = &flags.HTTPFlags{}
|
|
|
|
flags.Merge(c.flags, c.http.ClientFlags())
|
|
|
|
flags.Merge(c.flags, c.http.ServerFlags())
|
2017-10-17 22:00:01 +00:00
|
|
|
c.help = flags.Usage(help, c.flags)
|
2017-10-17 06:28:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *cmd) Run(args []string) int {
|
|
|
|
if err := c.flags.Parse(args); err != nil {
|
2017-02-15 21:30:07 +00:00
|
|
|
if err == flag.ErrHelp {
|
|
|
|
return 0
|
|
|
|
}
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Failed to parse args: %v", err))
|
2017-02-15 21:30:07 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set up a client.
|
2017-10-17 06:28:35 +00:00
|
|
|
client, err := c.http.APIClient()
|
2017-02-15 21:30:07 +00:00
|
|
|
if err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error initializing client: %s", err))
|
2017-02-15 21:30:07 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fetch the current configuration.
|
2017-10-11 12:51:18 +00:00
|
|
|
if err := raftRemovePeers(c.address, c.id, client.Operator()); err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error removing peer: %v", err))
|
2017-02-15 21:30:07 +00:00
|
|
|
return 1
|
|
|
|
}
|
2017-10-11 12:51:18 +00:00
|
|
|
if c.address != "" {
|
|
|
|
c.UI.Output(fmt.Sprintf("Removed peer with address %q", c.address))
|
2017-03-30 01:09:41 +00:00
|
|
|
} else {
|
2017-10-11 12:51:18 +00:00
|
|
|
c.UI.Output(fmt.Sprintf("Removed peer with id %q", c.id))
|
2017-03-30 01:09:41 +00:00
|
|
|
}
|
2017-02-15 21:30:07 +00:00
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2017-03-30 01:09:41 +00:00
|
|
|
func raftRemovePeers(address, id string, operator *api.Operator) error {
|
|
|
|
if len(address) == 0 && len(id) == 0 {
|
|
|
|
return fmt.Errorf("an address or id is required for the peer to remove")
|
|
|
|
}
|
|
|
|
if len(address) > 0 && len(id) > 0 {
|
|
|
|
return fmt.Errorf("cannot give both an address and id")
|
2017-02-15 21:30:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Try to kick the peer.
|
2017-03-30 01:09:41 +00:00
|
|
|
if len(address) > 0 {
|
|
|
|
if err := operator.RaftRemovePeerByAddress(address, nil); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if err := operator.RaftRemovePeerByID(id, nil); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-02-15 21:30:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2017-10-17 06:28:35 +00:00
|
|
|
|
2017-10-17 13:44:20 +00:00
|
|
|
func (c *cmd) Synopsis() string {
|
|
|
|
return synopsis
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *cmd) Help() string {
|
|
|
|
return c.help
|
|
|
|
}
|
|
|
|
|
|
|
|
const synopsis = "Remove a Consul server from the Raft configuration"
|
|
|
|
const help = `
|
|
|
|
Usage: consul operator raft remove-peer [options]
|
2017-10-17 06:28:35 +00:00
|
|
|
|
2017-10-17 13:44:20 +00:00
|
|
|
Remove the Consul server with given -address from the Raft configuration.
|
2017-10-17 06:28:35 +00:00
|
|
|
|
2017-10-17 13:44:20 +00:00
|
|
|
There are rare cases where a peer may be left behind in the Raft quorum even
|
|
|
|
though the server is no longer present and known to the cluster. This command
|
|
|
|
can be used to remove the failed server so that it is no longer affects the Raft
|
|
|
|
quorum. If the server still shows in the output of the "consul members" command,
|
|
|
|
it is preferable to clean up by simply running "consul force-leave" instead of
|
|
|
|
this command.
|
|
|
|
`
|