2013-12-19 20:18:06 +00:00
|
|
|
package agent
|
|
|
|
|
|
|
|
import (
|
2017-05-24 13:22:56 +00:00
|
|
|
"encoding/json"
|
2013-12-20 01:14:46 +00:00
|
|
|
"fmt"
|
2013-12-21 00:39:32 +00:00
|
|
|
"io"
|
2013-12-30 23:27:41 +00:00
|
|
|
"net"
|
2013-12-21 00:39:32 +00:00
|
|
|
"os"
|
|
|
|
"os/signal"
|
2014-09-02 21:23:43 +00:00
|
|
|
"path/filepath"
|
2014-06-09 18:57:15 +00:00
|
|
|
"regexp"
|
2013-12-19 20:18:06 +00:00
|
|
|
"strings"
|
2013-12-21 00:39:32 +00:00
|
|
|
"syscall"
|
|
|
|
"time"
|
2014-06-16 21:36:12 +00:00
|
|
|
|
|
|
|
"github.com/armon/go-metrics"
|
2016-07-18 13:34:43 +00:00
|
|
|
"github.com/armon/go-metrics/circonus"
|
2015-06-16 22:05:55 +00:00
|
|
|
"github.com/armon/go-metrics/datadog"
|
2017-02-25 02:11:05 +00:00
|
|
|
"github.com/hashicorp/consul/command/base"
|
2017-01-23 23:53:45 +00:00
|
|
|
"github.com/hashicorp/consul/consul/structs"
|
2017-05-15 20:10:36 +00:00
|
|
|
"github.com/hashicorp/consul/ipaddr"
|
2016-01-29 19:42:34 +00:00
|
|
|
"github.com/hashicorp/consul/lib"
|
2016-11-04 04:14:56 +00:00
|
|
|
"github.com/hashicorp/consul/logger"
|
2014-08-21 20:09:13 +00:00
|
|
|
"github.com/hashicorp/consul/watch"
|
2014-09-02 21:23:43 +00:00
|
|
|
"github.com/hashicorp/go-checkpoint"
|
2016-11-30 18:29:42 +00:00
|
|
|
multierror "github.com/hashicorp/go-multierror"
|
2014-06-16 21:36:12 +00:00
|
|
|
"github.com/hashicorp/logutils"
|
|
|
|
"github.com/mitchellh/cli"
|
2013-12-19 20:18:06 +00:00
|
|
|
)
|
|
|
|
|
2013-12-21 00:39:32 +00:00
|
|
|
// gracefulTimeout controls how long we wait before forcefully terminating
|
|
|
|
var gracefulTimeout = 5 * time.Second
|
|
|
|
|
2014-06-09 18:57:15 +00:00
|
|
|
// validDatacenter is used to validate a datacenter
|
|
|
|
var validDatacenter = regexp.MustCompile("^[a-zA-Z0-9_-]+$")
|
|
|
|
|
2014-01-02 23:10:13 +00:00
|
|
|
// Command is a Command implementation that runs a Consul agent.
|
2013-12-19 20:18:06 +00:00
|
|
|
// The command will not end unless a shutdown message is sent on the
|
|
|
|
// ShutdownCh. If two messages are sent on the ShutdownCh it will forcibly
|
|
|
|
// exit.
|
|
|
|
type Command struct {
|
2017-02-25 02:11:05 +00:00
|
|
|
base.Command
|
2016-07-20 01:38:15 +00:00
|
|
|
Revision string
|
|
|
|
Version string
|
|
|
|
VersionPrerelease string
|
|
|
|
HumanVersion string
|
|
|
|
ShutdownCh <-chan struct{}
|
|
|
|
args []string
|
|
|
|
logFilter *logutils.LevelFilter
|
|
|
|
logOutput io.Writer
|
2013-12-21 00:39:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// readConfig is responsible for setup of our configuration using
|
|
|
|
// the command line and any file configs
|
2017-05-22 11:13:44 +00:00
|
|
|
func (cmd *Command) readConfig() *Config {
|
2017-05-22 11:17:31 +00:00
|
|
|
var cmdCfg Config
|
|
|
|
var cfgFiles []string
|
2014-10-12 17:50:15 +00:00
|
|
|
var retryInterval string
|
2014-11-17 22:14:59 +00:00
|
|
|
var retryIntervalWan string
|
2015-02-21 06:45:52 +00:00
|
|
|
var dnsRecursors []string
|
2015-11-29 04:40:05 +00:00
|
|
|
var dev bool
|
2017-01-11 21:07:11 +00:00
|
|
|
var nodeMeta []string
|
2017-02-25 02:11:05 +00:00
|
|
|
|
2017-05-22 11:13:44 +00:00
|
|
|
f := cmd.Command.NewFlagSet(cmd)
|
2017-02-25 02:11:05 +00:00
|
|
|
|
2017-05-22 11:17:31 +00:00
|
|
|
f.Var((*AppendSliceValue)(&cfgFiles), "config-file",
|
2017-02-25 02:11:05 +00:00
|
|
|
"Path to a JSON file to read configuration from. This can be specified multiple times.")
|
2017-05-22 11:17:31 +00:00
|
|
|
f.Var((*AppendSliceValue)(&cfgFiles), "config-dir",
|
2017-02-25 02:11:05 +00:00
|
|
|
"Path to a directory to read configuration files from. This will read every file ending "+
|
|
|
|
"in '.json' as configuration in this directory in alphabetical order. This can be "+
|
|
|
|
"specified multiple times.")
|
|
|
|
f.Var((*AppendSliceValue)(&dnsRecursors), "recursor",
|
|
|
|
"Address of an upstream DNS server. Can be specified multiple times.")
|
|
|
|
f.Var((*AppendSliceValue)(&nodeMeta), "node-meta",
|
2017-02-28 21:41:09 +00:00
|
|
|
"An arbitrary metadata key/value pair for this node, of the format `key:value`. Can be specified multiple times.")
|
2017-02-25 02:11:05 +00:00
|
|
|
f.BoolVar(&dev, "dev", false, "Starts the agent in development mode.")
|
|
|
|
|
2017-05-22 11:17:31 +00:00
|
|
|
f.StringVar(&cmdCfg.LogLevel, "log-level", "", "Log level of the agent.")
|
|
|
|
f.StringVar(&cmdCfg.NodeName, "node", "", "Name of this node. Must be unique in the cluster.")
|
|
|
|
f.StringVar((*string)(&cmdCfg.NodeID), "node-id", "",
|
2017-02-25 02:11:05 +00:00
|
|
|
"A unique ID for this node across space and time. Defaults to a randomly-generated ID"+
|
|
|
|
" that persists in the data-dir.")
|
2017-05-22 11:17:31 +00:00
|
|
|
f.BoolVar(&cmdCfg.DisableHostNodeID, "disable-host-node-id", false,
|
2017-04-13 05:05:38 +00:00
|
|
|
"Setting this to true will prevent Consul from using information from the"+
|
|
|
|
" host to generate a node ID, and will cause Consul to generate a"+
|
|
|
|
" random node ID instead.")
|
2017-05-22 11:17:31 +00:00
|
|
|
f.StringVar(&cmdCfg.Datacenter, "datacenter", "", "Datacenter of the agent.")
|
|
|
|
f.StringVar(&cmdCfg.DataDir, "data-dir", "", "Path to a data directory to store agent state.")
|
|
|
|
f.BoolVar(&cmdCfg.EnableUI, "ui", false, "Enables the built-in static web UI server.")
|
|
|
|
f.StringVar(&cmdCfg.UIDir, "ui-dir", "", "Path to directory containing the web UI resources.")
|
|
|
|
f.StringVar(&cmdCfg.PidFile, "pid-file", "", "Path to file to store agent PID.")
|
|
|
|
f.StringVar(&cmdCfg.EncryptKey, "encrypt", "", "Provides the gossip encryption key.")
|
|
|
|
|
|
|
|
f.BoolVar(&cmdCfg.Server, "server", false, "Switches agent to server mode.")
|
|
|
|
f.BoolVar(&cmdCfg.NonVotingServer, "non-voting-server", false,
|
2017-03-21 23:36:44 +00:00
|
|
|
"(Enterprise-only) This flag is used to make the server not participate in the Raft quorum, "+
|
|
|
|
"and have it only receive the data replication stream. This can be used to add read scalability "+
|
|
|
|
"to a cluster in cases where a high volume of reads to servers are needed.")
|
2017-05-22 11:17:31 +00:00
|
|
|
f.BoolVar(&cmdCfg.Bootstrap, "bootstrap", false, "Sets server to bootstrap mode.")
|
|
|
|
f.IntVar(&cmdCfg.BootstrapExpect, "bootstrap-expect", 0, "Sets server to expect bootstrap mode.")
|
|
|
|
f.StringVar(&cmdCfg.Domain, "domain", "", "Domain to use for DNS interface.")
|
2017-02-25 02:11:05 +00:00
|
|
|
|
2017-05-22 11:17:31 +00:00
|
|
|
f.StringVar(&cmdCfg.ClientAddr, "client", "",
|
2017-02-28 21:41:09 +00:00
|
|
|
"Sets the address to bind for client access. This includes RPC, DNS, HTTP and HTTPS (if configured).")
|
2017-05-22 11:17:31 +00:00
|
|
|
f.StringVar(&cmdCfg.BindAddr, "bind", "", "Sets the bind address for cluster communication.")
|
|
|
|
f.StringVar(&cmdCfg.SerfWanBindAddr, "serf-wan-bind", "", "Address to bind Serf WAN listeners to.")
|
|
|
|
f.StringVar(&cmdCfg.SerfLanBindAddr, "serf-lan-bind", "", "Address to bind Serf LAN listeners to.")
|
|
|
|
f.IntVar(&cmdCfg.Ports.HTTP, "http-port", 0, "Sets the HTTP API port to listen on.")
|
|
|
|
f.IntVar(&cmdCfg.Ports.DNS, "dns-port", 0, "DNS port to use.")
|
|
|
|
f.StringVar(&cmdCfg.AdvertiseAddr, "advertise", "", "Sets the advertise address to use.")
|
|
|
|
f.StringVar(&cmdCfg.AdvertiseAddrWan, "advertise-wan", "",
|
2017-02-28 21:41:09 +00:00
|
|
|
"Sets address to advertise on WAN instead of -advertise address.")
|
2017-02-25 02:11:05 +00:00
|
|
|
|
2017-05-22 11:17:31 +00:00
|
|
|
f.IntVar(&cmdCfg.Protocol, "protocol", -1,
|
2017-02-25 02:11:05 +00:00
|
|
|
"Sets the protocol version. Defaults to latest.")
|
2017-05-22 11:17:31 +00:00
|
|
|
f.IntVar(&cmdCfg.RaftProtocol, "raft-protocol", -1,
|
2017-03-01 22:04:40 +00:00
|
|
|
"Sets the Raft protocol version. Defaults to latest.")
|
2017-02-25 02:11:05 +00:00
|
|
|
|
2017-05-22 11:17:31 +00:00
|
|
|
f.BoolVar(&cmdCfg.EnableSyslog, "syslog", false,
|
2017-02-25 02:11:05 +00:00
|
|
|
"Enables logging to syslog.")
|
2017-05-22 11:17:31 +00:00
|
|
|
f.BoolVar(&cmdCfg.RejoinAfterLeave, "rejoin", false,
|
2017-02-25 02:11:05 +00:00
|
|
|
"Ignores a previous leave and attempts to rejoin the cluster.")
|
2017-05-22 11:17:31 +00:00
|
|
|
f.Var((*AppendSliceValue)(&cmdCfg.StartJoin), "join",
|
2017-02-25 02:11:05 +00:00
|
|
|
"Address of an agent to join at start time. Can be specified multiple times.")
|
2017-05-22 11:17:31 +00:00
|
|
|
f.Var((*AppendSliceValue)(&cmdCfg.StartJoinWan), "join-wan",
|
2017-02-25 02:11:05 +00:00
|
|
|
"Address of an agent to join -wan at start time. Can be specified multiple times.")
|
2017-05-22 11:17:31 +00:00
|
|
|
f.Var((*AppendSliceValue)(&cmdCfg.RetryJoin), "retry-join",
|
2017-02-25 02:11:05 +00:00
|
|
|
"Address of an agent to join at start time with retries enabled. Can be specified multiple times.")
|
2017-05-22 11:17:31 +00:00
|
|
|
f.IntVar(&cmdCfg.RetryMaxAttempts, "retry-max", 0,
|
2017-02-25 02:11:05 +00:00
|
|
|
"Maximum number of join attempts. Defaults to 0, which will retry indefinitely.")
|
|
|
|
f.StringVar(&retryInterval, "retry-interval", "",
|
|
|
|
"Time to wait between join attempts.")
|
2017-05-22 11:17:31 +00:00
|
|
|
f.StringVar(&cmdCfg.RetryJoinEC2.Region, "retry-join-ec2-region", "",
|
2017-02-25 02:11:05 +00:00
|
|
|
"EC2 Region to discover servers in.")
|
2017-05-22 11:17:31 +00:00
|
|
|
f.StringVar(&cmdCfg.RetryJoinEC2.TagKey, "retry-join-ec2-tag-key", "",
|
2017-02-25 02:11:05 +00:00
|
|
|
"EC2 tag key to filter on for server discovery.")
|
2017-05-22 11:17:31 +00:00
|
|
|
f.StringVar(&cmdCfg.RetryJoinEC2.TagValue, "retry-join-ec2-tag-value", "",
|
2017-02-25 02:11:05 +00:00
|
|
|
"EC2 tag value to filter on for server discovery.")
|
2017-05-22 11:17:31 +00:00
|
|
|
f.StringVar(&cmdCfg.RetryJoinGCE.ProjectName, "retry-join-gce-project-name", "",
|
2017-02-25 02:11:05 +00:00
|
|
|
"Google Compute Engine project to discover servers in.")
|
2017-05-22 11:17:31 +00:00
|
|
|
f.StringVar(&cmdCfg.RetryJoinGCE.ZonePattern, "retry-join-gce-zone-pattern", "",
|
2017-02-25 02:11:05 +00:00
|
|
|
"Google Compute Engine region or zone to discover servers in (regex pattern).")
|
2017-05-22 11:17:31 +00:00
|
|
|
f.StringVar(&cmdCfg.RetryJoinGCE.TagValue, "retry-join-gce-tag-value", "",
|
2017-02-25 02:11:05 +00:00
|
|
|
"Google Compute Engine tag value to filter on for server discovery.")
|
2017-05-22 11:17:31 +00:00
|
|
|
f.StringVar(&cmdCfg.RetryJoinGCE.CredentialsFile, "retry-join-gce-credentials-file", "",
|
2017-02-25 02:11:05 +00:00
|
|
|
"Path to credentials JSON file to use with Google Compute Engine.")
|
2017-05-22 11:17:31 +00:00
|
|
|
f.StringVar(&cmdCfg.RetryJoinAzure.TagName, "retry-join-azure-tag-name", "",
|
2017-05-24 07:19:23 +00:00
|
|
|
"Azure tag name to filter on for server discovery.")
|
2017-05-22 11:17:31 +00:00
|
|
|
f.StringVar(&cmdCfg.RetryJoinAzure.TagValue, "retry-join-azure-tag-value", "",
|
2017-05-24 07:19:23 +00:00
|
|
|
"Azure tag value to filter on for server discovery.")
|
2017-05-22 11:17:31 +00:00
|
|
|
f.Var((*AppendSliceValue)(&cmdCfg.RetryJoinWan), "retry-join-wan",
|
2017-02-25 02:11:05 +00:00
|
|
|
"Address of an agent to join -wan at start time with retries enabled. "+
|
|
|
|
"Can be specified multiple times.")
|
2017-05-22 11:17:31 +00:00
|
|
|
f.IntVar(&cmdCfg.RetryMaxAttemptsWan, "retry-max-wan", 0,
|
2017-02-25 02:11:05 +00:00
|
|
|
"Maximum number of join -wan attempts. Defaults to 0, which will retry indefinitely.")
|
|
|
|
f.StringVar(&retryIntervalWan, "retry-interval-wan", "",
|
|
|
|
"Time to wait between join -wan attempts.")
|
|
|
|
|
2017-05-10 15:45:17 +00:00
|
|
|
// deprecated flags
|
|
|
|
var dcDeprecated string
|
|
|
|
var atlasJoin bool
|
|
|
|
var atlasInfrastructure, atlasToken, atlasEndpoint string
|
|
|
|
f.StringVar(&dcDeprecated, "dc", "",
|
|
|
|
"(deprecated) Datacenter of the agent (use 'datacenter' instead).")
|
|
|
|
f.StringVar(&atlasInfrastructure, "atlas", "",
|
|
|
|
"(deprecated) Sets the Atlas infrastructure name, enables SCADA.")
|
|
|
|
f.StringVar(&atlasToken, "atlas-token", "",
|
|
|
|
"(deprecated) Provides the Atlas API token.")
|
|
|
|
f.BoolVar(&atlasJoin, "atlas-join", false,
|
|
|
|
"(deprecated) Enables auto-joining the Atlas cluster.")
|
|
|
|
f.StringVar(&atlasEndpoint, "atlas-endpoint", "",
|
|
|
|
"(deprecated) The address of the endpoint for Atlas integration.")
|
|
|
|
|
2017-05-22 11:13:44 +00:00
|
|
|
if err := cmd.Command.Parse(cmd.args); err != nil {
|
2013-12-21 00:39:32 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-05-10 15:45:17 +00:00
|
|
|
// check deprecated flags
|
|
|
|
if atlasInfrastructure != "" {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Warn("WARNING: 'atlas' is deprecated")
|
2017-05-10 15:45:17 +00:00
|
|
|
}
|
|
|
|
if atlasToken != "" {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Warn("WARNING: 'atlas-token' is deprecated")
|
2017-05-10 15:45:17 +00:00
|
|
|
}
|
|
|
|
if atlasJoin {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Warn("WARNING: 'atlas-join' is deprecated")
|
2017-05-10 15:45:17 +00:00
|
|
|
}
|
|
|
|
if atlasEndpoint != "" {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Warn("WARNING: 'atlas-endpoint' is deprecated")
|
2017-05-10 15:45:17 +00:00
|
|
|
}
|
2017-05-22 11:17:31 +00:00
|
|
|
if dcDeprecated != "" && cmdCfg.Datacenter == "" {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Warn("WARNING: 'dc' is deprecated. Use 'datacenter' instead")
|
2017-05-22 11:17:31 +00:00
|
|
|
cmdCfg.Datacenter = dcDeprecated
|
2017-05-10 15:45:17 +00:00
|
|
|
}
|
|
|
|
|
2014-10-12 17:50:15 +00:00
|
|
|
if retryInterval != "" {
|
|
|
|
dur, err := time.ParseDuration(retryInterval)
|
|
|
|
if err != nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("Error: %s", err))
|
2014-10-12 17:50:15 +00:00
|
|
|
return nil
|
|
|
|
}
|
2017-05-22 11:17:31 +00:00
|
|
|
cmdCfg.RetryInterval = dur
|
2014-10-12 17:50:15 +00:00
|
|
|
}
|
|
|
|
|
2014-11-17 22:14:59 +00:00
|
|
|
if retryIntervalWan != "" {
|
|
|
|
dur, err := time.ParseDuration(retryIntervalWan)
|
2014-11-14 15:02:42 +00:00
|
|
|
if err != nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("Error: %s", err))
|
2014-11-14 15:02:42 +00:00
|
|
|
return nil
|
|
|
|
}
|
2017-05-22 11:17:31 +00:00
|
|
|
cmdCfg.RetryIntervalWan = dur
|
2014-11-14 15:02:42 +00:00
|
|
|
}
|
|
|
|
|
2017-01-11 21:07:11 +00:00
|
|
|
if len(nodeMeta) > 0 {
|
2017-05-22 11:17:31 +00:00
|
|
|
cmdCfg.Meta = make(map[string]string)
|
2017-01-11 21:07:11 +00:00
|
|
|
for _, entry := range nodeMeta {
|
2017-06-02 10:04:04 +00:00
|
|
|
key, value := ParseMetaPair(entry)
|
2017-05-22 11:17:31 +00:00
|
|
|
cmdCfg.Meta[key] = value
|
2017-01-11 21:07:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-22 11:17:31 +00:00
|
|
|
cfg := DefaultConfig()
|
2015-11-29 04:40:05 +00:00
|
|
|
if dev {
|
2017-05-22 11:17:31 +00:00
|
|
|
cfg = DevConfig()
|
2015-11-29 04:40:05 +00:00
|
|
|
}
|
|
|
|
|
2017-05-22 11:17:31 +00:00
|
|
|
if len(cfgFiles) > 0 {
|
|
|
|
fileConfig, err := ReadConfigPaths(cfgFiles)
|
2013-12-21 00:39:32 +00:00
|
|
|
if err != nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(err.Error())
|
2013-12-21 00:39:32 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-05-22 11:17:31 +00:00
|
|
|
cfg = MergeConfig(cfg, fileConfig)
|
2013-12-21 00:39:32 +00:00
|
|
|
}
|
|
|
|
|
2017-05-22 11:17:31 +00:00
|
|
|
cmdCfg.DNSRecursors = append(cmdCfg.DNSRecursors, dnsRecursors...)
|
2015-02-21 06:45:52 +00:00
|
|
|
|
2017-05-22 11:17:31 +00:00
|
|
|
cfg = MergeConfig(cfg, &cmdCfg)
|
2013-12-21 00:39:32 +00:00
|
|
|
|
2017-05-22 11:17:31 +00:00
|
|
|
if cfg.NodeName == "" {
|
2013-12-21 00:39:32 +00:00
|
|
|
hostname, err := os.Hostname()
|
|
|
|
if err != nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("Error determining node name: %s", err))
|
2016-03-31 21:47:55 +00:00
|
|
|
return nil
|
|
|
|
}
|
2017-05-22 11:17:31 +00:00
|
|
|
cfg.NodeName = hostname
|
2013-12-21 00:39:32 +00:00
|
|
|
}
|
2017-05-22 11:17:31 +00:00
|
|
|
cfg.NodeName = strings.TrimSpace(cfg.NodeName)
|
|
|
|
if cfg.NodeName == "" {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error("Node name can not be empty")
|
2016-03-31 22:02:58 +00:00
|
|
|
return nil
|
|
|
|
}
|
2013-12-21 00:39:32 +00:00
|
|
|
|
2016-09-01 06:39:11 +00:00
|
|
|
// Make sure LeaveOnTerm and SkipLeaveOnInt are set to the right
|
|
|
|
// defaults based on the agent's mode (client or server).
|
2017-05-22 11:17:31 +00:00
|
|
|
if cfg.LeaveOnTerm == nil {
|
|
|
|
cfg.LeaveOnTerm = Bool(!cfg.Server)
|
2016-09-01 06:39:11 +00:00
|
|
|
}
|
2017-05-22 11:17:31 +00:00
|
|
|
if cfg.SkipLeaveOnInt == nil {
|
|
|
|
cfg.SkipLeaveOnInt = Bool(cfg.Server)
|
2016-04-01 00:45:14 +00:00
|
|
|
}
|
|
|
|
|
2016-12-15 06:11:16 +00:00
|
|
|
// Ensure we have a data directory if we are not in dev mode.
|
|
|
|
if !dev {
|
2017-05-22 11:17:31 +00:00
|
|
|
if cfg.DataDir == "" {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error("Must specify data directory using -data-dir")
|
2016-12-15 06:11:16 +00:00
|
|
|
return nil
|
|
|
|
}
|
2014-10-03 05:05:00 +00:00
|
|
|
|
2017-05-22 11:17:31 +00:00
|
|
|
if finfo, err := os.Stat(cfg.DataDir); err != nil {
|
2016-12-15 17:30:18 +00:00
|
|
|
if !os.IsNotExist(err) {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("Error getting data-dir: %s", err))
|
2016-12-15 17:30:18 +00:00
|
|
|
return nil
|
|
|
|
}
|
2016-12-15 06:11:16 +00:00
|
|
|
} else if !finfo.IsDir() {
|
2017-05-22 11:17:31 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("The data-dir specified at %q is not a directory", cfg.DataDir))
|
2016-12-15 06:11:16 +00:00
|
|
|
return nil
|
|
|
|
}
|
2014-10-03 05:05:00 +00:00
|
|
|
}
|
|
|
|
|
2016-04-01 17:20:45 +00:00
|
|
|
// Ensure all endpoints are unique
|
2017-05-22 11:17:31 +00:00
|
|
|
if err := cfg.verifyUniqueListeners(); err != nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("All listening endpoints must be unique: %s", err))
|
2016-04-01 17:20:45 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-10-15 21:14:56 +00:00
|
|
|
// Check the data dir for signs of an un-migrated Consul 0.5.x or older
|
|
|
|
// server. Consul refuses to start if this is present to protect a server
|
|
|
|
// with existing data from starting on a fresh data set.
|
2017-05-22 11:17:31 +00:00
|
|
|
if cfg.Server {
|
|
|
|
mdbPath := filepath.Join(cfg.DataDir, "mdb")
|
2015-10-15 21:21:35 +00:00
|
|
|
if _, err := os.Stat(mdbPath); !os.IsNotExist(err) {
|
2016-03-28 16:56:24 +00:00
|
|
|
if os.IsPermission(err) {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("CRITICAL: Permission denied for data folder at %q!", mdbPath))
|
|
|
|
cmd.UI.Error("Consul will refuse to boot without access to this directory.")
|
|
|
|
cmd.UI.Error("Please correct permissions and try starting again.")
|
2016-03-28 16:56:24 +00:00
|
|
|
return nil
|
|
|
|
}
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("CRITICAL: Deprecated data folder found at %q!", mdbPath))
|
|
|
|
cmd.UI.Error("Consul will refuse to boot with this directory present.")
|
|
|
|
cmd.UI.Error("See https://www.consul.io/docs/upgrade-specific.html for more information.")
|
2015-10-15 21:14:56 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-12 07:58:48 +00:00
|
|
|
// Verify DNS settings
|
2017-05-22 11:17:31 +00:00
|
|
|
if cfg.DNSConfig.UDPAnswerLimit < 1 {
|
|
|
|
cmd.UI.Error(fmt.Sprintf("dns_config.udp_answer_limit %d too low, must always be greater than zero", cfg.DNSConfig.UDPAnswerLimit))
|
2016-02-12 07:58:48 +00:00
|
|
|
}
|
|
|
|
|
2017-05-22 11:17:31 +00:00
|
|
|
if cfg.EncryptKey != "" {
|
|
|
|
if _, err := cfg.EncryptBytes(); err != nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("Invalid encryption key: %s", err))
|
2014-09-15 00:31:44 +00:00
|
|
|
return nil
|
|
|
|
}
|
2017-05-22 11:17:31 +00:00
|
|
|
keyfileLAN := filepath.Join(cfg.DataDir, serfLANKeyring)
|
2014-10-10 18:13:30 +00:00
|
|
|
if _, err := os.Stat(keyfileLAN); err == nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error("WARNING: LAN keyring exists but -encrypt given, using keyring")
|
2014-10-03 05:05:00 +00:00
|
|
|
}
|
2017-05-22 11:17:31 +00:00
|
|
|
if cfg.Server {
|
|
|
|
keyfileWAN := filepath.Join(cfg.DataDir, serfWANKeyring)
|
2014-10-10 18:13:30 +00:00
|
|
|
if _, err := os.Stat(keyfileWAN); err == nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error("WARNING: WAN keyring exists but -encrypt given, using keyring")
|
2014-10-09 22:28:38 +00:00
|
|
|
}
|
2014-10-03 05:05:00 +00:00
|
|
|
}
|
2014-02-23 01:34:57 +00:00
|
|
|
}
|
|
|
|
|
2015-05-05 20:56:37 +00:00
|
|
|
// Ensure the datacenter is always lowercased. The DNS endpoints automatically
|
|
|
|
// lowercase all queries, and internally we expect DC1 and dc1 to be the same.
|
2017-05-22 11:17:31 +00:00
|
|
|
cfg.Datacenter = strings.ToLower(cfg.Datacenter)
|
2015-05-05 20:56:37 +00:00
|
|
|
|
2015-02-19 22:45:47 +00:00
|
|
|
// Verify datacenter is valid
|
2017-05-22 11:17:31 +00:00
|
|
|
if !validDatacenter.MatchString(cfg.Datacenter) {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error("Datacenter must be alpha-numeric with underscores and hypens only")
|
2014-06-09 18:57:15 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-11-08 02:41:23 +00:00
|
|
|
// If 'acl_datacenter' is set, ensure it is lowercased.
|
2017-05-22 11:17:31 +00:00
|
|
|
if cfg.ACLDatacenter != "" {
|
|
|
|
cfg.ACLDatacenter = strings.ToLower(cfg.ACLDatacenter)
|
2016-11-08 02:41:23 +00:00
|
|
|
|
|
|
|
// Verify 'acl_datacenter' is valid
|
2017-05-22 11:17:31 +00:00
|
|
|
if !validDatacenter.MatchString(cfg.ACLDatacenter) {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error("ACL datacenter must be alpha-numeric with underscores and hypens only")
|
2016-11-08 02:41:23 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-23 02:58:15 +00:00
|
|
|
// Only allow bootstrap mode when acting as a server
|
2017-05-22 11:17:31 +00:00
|
|
|
if cfg.Bootstrap && !cfg.Server {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error("Bootstrap mode cannot be enabled when server mode is not enabled")
|
2014-02-23 02:58:15 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-06-16 21:36:12 +00:00
|
|
|
// Expect can only work when acting as a server
|
2017-05-22 11:17:31 +00:00
|
|
|
if cfg.BootstrapExpect != 0 && !cfg.Server {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error("Expect mode cannot be enabled when server mode is not enabled")
|
2014-06-16 21:36:12 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-11-03 05:54:43 +00:00
|
|
|
// Expect can only work when dev mode is off
|
2017-05-22 11:17:31 +00:00
|
|
|
if cfg.BootstrapExpect > 0 && cfg.DevMode {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error("Expect mode cannot be enabled when dev mode is enabled")
|
2016-11-03 05:54:43 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-06-16 21:36:12 +00:00
|
|
|
// Expect & Bootstrap are mutually exclusive
|
2017-05-22 11:17:31 +00:00
|
|
|
if cfg.BootstrapExpect != 0 && cfg.Bootstrap {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error("Bootstrap cannot be provided with an expected server count")
|
2014-06-16 21:36:12 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-05-22 11:17:31 +00:00
|
|
|
if ipaddr.IsAny(cfg.AdvertiseAddr) {
|
|
|
|
cmd.UI.Error("Advertise address cannot be " + cfg.AdvertiseAddr)
|
2017-05-08 16:39:53 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-05-22 11:17:31 +00:00
|
|
|
if ipaddr.IsAny(cfg.AdvertiseAddrWan) {
|
|
|
|
cmd.UI.Error("Advertise WAN address cannot be " + cfg.AdvertiseAddrWan)
|
2017-05-08 16:39:53 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-08-21 20:09:13 +00:00
|
|
|
// Compile all the watches
|
2017-05-22 11:17:31 +00:00
|
|
|
for _, params := range cfg.Watches {
|
2014-08-21 20:09:13 +00:00
|
|
|
// Parse the watches, excluding the handler
|
|
|
|
wp, err := watch.ParseExempt(params, []string{"handler"})
|
|
|
|
if err != nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("Failed to parse watch (%#v): %v", params, err))
|
2014-08-21 20:09:13 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the handler
|
|
|
|
if err := verifyWatchHandler(wp.Exempt["handler"]); err != nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("Failed to setup watch handler (%#v): %v", params, err))
|
2014-08-21 20:09:13 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Store the watch plan
|
2017-05-22 11:17:31 +00:00
|
|
|
cfg.WatchPlans = append(cfg.WatchPlans, wp)
|
2014-08-21 20:09:13 +00:00
|
|
|
}
|
|
|
|
|
2014-06-16 21:36:12 +00:00
|
|
|
// Warn if we are in expect mode
|
2017-05-22 11:17:31 +00:00
|
|
|
if cfg.BootstrapExpect == 1 {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error("WARNING: BootstrapExpect Mode is specified as 1; this is the same as Bootstrap mode.")
|
2017-05-22 11:17:31 +00:00
|
|
|
cfg.BootstrapExpect = 0
|
|
|
|
cfg.Bootstrap = true
|
|
|
|
} else if cfg.BootstrapExpect > 0 {
|
|
|
|
cmd.UI.Error(fmt.Sprintf("WARNING: Expect Mode enabled, expecting %d servers", cfg.BootstrapExpect))
|
2014-06-16 21:36:12 +00:00
|
|
|
}
|
|
|
|
|
2014-02-23 02:58:15 +00:00
|
|
|
// Warn if we are in bootstrap mode
|
2017-05-22 11:17:31 +00:00
|
|
|
if cfg.Bootstrap {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error("WARNING: Bootstrap mode enabled! Do not enable unless necessary")
|
2014-02-23 02:58:15 +00:00
|
|
|
}
|
|
|
|
|
2016-11-02 18:35:37 +00:00
|
|
|
// Need both tag key and value for EC2 discovery
|
2017-05-22 11:17:31 +00:00
|
|
|
if cfg.RetryJoinEC2.TagKey != "" || cfg.RetryJoinEC2.TagValue != "" {
|
|
|
|
if cfg.RetryJoinEC2.TagKey == "" || cfg.RetryJoinEC2.TagValue == "" {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error("tag key and value are both required for EC2 retry-join")
|
2016-05-12 01:41:41 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-05 08:07:53 +00:00
|
|
|
// EC2 and GCE discovery are mutually exclusive
|
2017-05-22 11:17:31 +00:00
|
|
|
if cfg.RetryJoinEC2.TagKey != "" && cfg.RetryJoinEC2.TagValue != "" && cfg.RetryJoinGCE.TagValue != "" {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error("EC2 and GCE discovery are mutually exclusive. Please provide one or the other.")
|
2016-12-05 08:07:53 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-01-11 19:41:12 +00:00
|
|
|
// Verify the node metadata entries are valid
|
2017-05-22 11:17:31 +00:00
|
|
|
if err := structs.ValidateMetadata(cfg.Meta); err != nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("Failed to parse node metadata: %v", err))
|
2016-12-07 04:41:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// It doesn't make sense to include both UI options.
|
2017-05-22 11:17:31 +00:00
|
|
|
if cfg.EnableUI == true && cfg.UIDir != "" {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error("Both the ui and ui-dir flags were specified, please provide only one")
|
|
|
|
cmd.UI.Error("If trying to use your own web UI resources, use the ui-dir flag")
|
|
|
|
cmd.UI.Error("If using Consul version 0.7.0 or later, the web UI is included in the binary so use ui to enable it")
|
2017-01-11 19:41:12 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-07-20 01:38:15 +00:00
|
|
|
// Set the version info
|
2017-05-22 11:17:31 +00:00
|
|
|
cfg.Revision = cmd.Revision
|
|
|
|
cfg.Version = cmd.Version
|
|
|
|
cfg.VersionPrerelease = cmd.VersionPrerelease
|
2016-07-20 01:38:15 +00:00
|
|
|
|
2017-05-22 11:17:31 +00:00
|
|
|
return cfg
|
2013-12-21 00:39:32 +00:00
|
|
|
}
|
|
|
|
|
2014-09-02 21:23:43 +00:00
|
|
|
// checkpointResults is used to handler periodic results from our update checker
|
2017-05-22 11:13:44 +00:00
|
|
|
func (cmd *Command) checkpointResults(results *checkpoint.CheckResponse, err error) {
|
2014-09-02 21:23:43 +00:00
|
|
|
if err != nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("Failed to check for updates: %v", err))
|
2014-09-02 21:23:43 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if results.Outdated {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("Newer Consul version available: %s (currently running: %s)", results.CurrentVersion, cmd.Version))
|
2014-09-02 21:23:43 +00:00
|
|
|
}
|
|
|
|
for _, alert := range results.Alerts {
|
|
|
|
switch alert.Level {
|
|
|
|
case "info":
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Info(fmt.Sprintf("Bulletin [%s]: %s (%s)", alert.Level, alert.Message, alert.URL))
|
2014-09-02 21:23:43 +00:00
|
|
|
default:
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("Bulletin [%s]: %s (%s)", alert.Level, alert.Message, alert.URL))
|
2014-09-02 21:23:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-11 23:59:16 +00:00
|
|
|
// startupJoin is invoked to handle any joins specified to take place at start time
|
2017-06-02 10:17:55 +00:00
|
|
|
func (cmd *Command) startupJoin(agent *Agent, cfg *Config) error {
|
2017-05-22 11:17:31 +00:00
|
|
|
if len(cfg.StartJoin) == 0 {
|
2014-04-11 23:59:16 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Output("Joining cluster...")
|
2017-06-02 10:17:55 +00:00
|
|
|
n, err := agent.JoinLAN(cfg.StartJoin)
|
2014-04-11 23:59:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Info(fmt.Sprintf("Join completed. Synced with %d initial agents", n))
|
2014-04-11 23:59:16 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-11-17 22:14:59 +00:00
|
|
|
// startupJoinWan is invoked to handle any joins -wan specified to take place at start time
|
2017-06-02 10:17:55 +00:00
|
|
|
func (cmd *Command) startupJoinWan(agent *Agent, cfg *Config) error {
|
2017-05-22 11:17:31 +00:00
|
|
|
if len(cfg.StartJoinWan) == 0 {
|
2014-11-14 15:02:42 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Output("Joining -wan cluster...")
|
2017-06-02 10:17:55 +00:00
|
|
|
n, err := agent.JoinWAN(cfg.StartJoinWan)
|
2014-11-14 15:02:42 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Info(fmt.Sprintf("Join -wan completed. Synced with %d initial agents", n))
|
2014-11-14 15:02:42 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-05-22 11:13:44 +00:00
|
|
|
func (cmd *Command) Run(args []string) int {
|
|
|
|
cmd.UI = &cli.PrefixedUi{
|
2013-12-20 01:14:46 +00:00
|
|
|
OutputPrefix: "==> ",
|
|
|
|
InfoPrefix: " ",
|
|
|
|
ErrorPrefix: "==> ",
|
2017-05-22 11:13:44 +00:00
|
|
|
Ui: cmd.UI,
|
2013-12-20 01:14:46 +00:00
|
|
|
}
|
|
|
|
|
2013-12-21 00:39:32 +00:00
|
|
|
// Parse our configs
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.args = args
|
|
|
|
config := cmd.readConfig()
|
2013-12-21 00:39:32 +00:00
|
|
|
if config == nil {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Setup the log outputs
|
2016-11-04 04:14:56 +00:00
|
|
|
logConfig := &logger.Config{
|
|
|
|
LogLevel: config.LogLevel,
|
|
|
|
EnableSyslog: config.EnableSyslog,
|
|
|
|
SyslogFacility: config.SyslogFacility,
|
|
|
|
}
|
2017-05-22 11:13:44 +00:00
|
|
|
logFilter, logGate, logWriter, logOutput, ok := logger.Setup(logConfig, cmd.UI)
|
2016-11-04 04:14:56 +00:00
|
|
|
if !ok {
|
2013-12-21 00:39:32 +00:00
|
|
|
return 1
|
|
|
|
}
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.logFilter = logFilter
|
|
|
|
cmd.logOutput = logOutput
|
2013-12-21 00:39:32 +00:00
|
|
|
|
2017-05-19 09:47:15 +00:00
|
|
|
// Setup telemetry
|
|
|
|
// Aggregate on 10 second intervals for 1 minute. Expose the
|
|
|
|
// metrics over stderr when there is a SIGUSR1 received.
|
2014-02-20 21:51:51 +00:00
|
|
|
inm := metrics.NewInmemSink(10*time.Second, time.Minute)
|
|
|
|
metrics.DefaultInmemSignal(inm)
|
2015-10-08 19:45:45 +00:00
|
|
|
metricsConf := metrics.DefaultConfig(config.Telemetry.StatsitePrefix)
|
|
|
|
metricsConf.EnableHostname = !config.Telemetry.DisableHostname
|
2014-02-20 22:59:54 +00:00
|
|
|
|
2014-09-02 18:26:08 +00:00
|
|
|
// Configure the statsite sink
|
|
|
|
var fanout metrics.FanoutSink
|
2015-10-08 19:45:45 +00:00
|
|
|
if config.Telemetry.StatsiteAddr != "" {
|
|
|
|
sink, err := metrics.NewStatsiteSink(config.Telemetry.StatsiteAddr)
|
2014-02-20 22:59:54 +00:00
|
|
|
if err != nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("Failed to start statsite sink. Got: %s", err))
|
2014-02-20 22:59:54 +00:00
|
|
|
return 1
|
|
|
|
}
|
2014-09-02 18:26:08 +00:00
|
|
|
fanout = append(fanout, sink)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Configure the statsd sink
|
2015-10-08 19:45:45 +00:00
|
|
|
if config.Telemetry.StatsdAddr != "" {
|
|
|
|
sink, err := metrics.NewStatsdSink(config.Telemetry.StatsdAddr)
|
2014-09-02 18:26:08 +00:00
|
|
|
if err != nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("Failed to start statsd sink. Got: %s", err))
|
2014-09-02 18:26:08 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
fanout = append(fanout, sink)
|
2015-06-16 22:05:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Configure the DogStatsd sink
|
2015-10-08 19:45:45 +00:00
|
|
|
if config.Telemetry.DogStatsdAddr != "" {
|
2015-06-16 22:05:55 +00:00
|
|
|
var tags []string
|
|
|
|
|
2015-10-08 19:45:45 +00:00
|
|
|
if config.Telemetry.DogStatsdTags != nil {
|
|
|
|
tags = config.Telemetry.DogStatsdTags
|
2015-06-16 22:05:55 +00:00
|
|
|
}
|
|
|
|
|
2015-10-08 19:45:45 +00:00
|
|
|
sink, err := datadog.NewDogStatsdSink(config.Telemetry.DogStatsdAddr, metricsConf.HostName)
|
2015-06-16 22:05:55 +00:00
|
|
|
if err != nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("Failed to start DogStatsd sink. Got: %s", err))
|
2015-06-16 22:05:55 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
sink.SetTags(tags)
|
|
|
|
fanout = append(fanout, sink)
|
2014-09-02 18:26:08 +00:00
|
|
|
}
|
2014-02-20 22:59:54 +00:00
|
|
|
|
2016-07-18 13:34:43 +00:00
|
|
|
if config.Telemetry.CirconusAPIToken != "" || config.Telemetry.CirconusCheckSubmissionURL != "" {
|
|
|
|
cfg := &circonus.Config{}
|
2016-07-18 19:46:11 +00:00
|
|
|
cfg.Interval = config.Telemetry.CirconusSubmissionInterval
|
2016-07-18 13:34:43 +00:00
|
|
|
cfg.CheckManager.API.TokenKey = config.Telemetry.CirconusAPIToken
|
|
|
|
cfg.CheckManager.API.TokenApp = config.Telemetry.CirconusAPIApp
|
|
|
|
cfg.CheckManager.API.URL = config.Telemetry.CirconusAPIURL
|
|
|
|
cfg.CheckManager.Check.SubmissionURL = config.Telemetry.CirconusCheckSubmissionURL
|
|
|
|
cfg.CheckManager.Check.ID = config.Telemetry.CirconusCheckID
|
|
|
|
cfg.CheckManager.Check.ForceMetricActivation = config.Telemetry.CirconusCheckForceMetricActivation
|
|
|
|
cfg.CheckManager.Check.InstanceID = config.Telemetry.CirconusCheckInstanceID
|
|
|
|
cfg.CheckManager.Check.SearchTag = config.Telemetry.CirconusCheckSearchTag
|
2016-11-09 20:33:37 +00:00
|
|
|
cfg.CheckManager.Check.DisplayName = config.Telemetry.CirconusCheckDisplayName
|
|
|
|
cfg.CheckManager.Check.Tags = config.Telemetry.CirconusCheckTags
|
2016-07-18 13:34:43 +00:00
|
|
|
cfg.CheckManager.Broker.ID = config.Telemetry.CirconusBrokerID
|
|
|
|
cfg.CheckManager.Broker.SelectTag = config.Telemetry.CirconusBrokerSelectTag
|
|
|
|
|
2017-02-26 20:24:03 +00:00
|
|
|
if cfg.CheckManager.Check.DisplayName == "" {
|
|
|
|
cfg.CheckManager.Check.DisplayName = "Consul"
|
|
|
|
}
|
|
|
|
|
2016-07-18 19:46:11 +00:00
|
|
|
if cfg.CheckManager.API.TokenApp == "" {
|
|
|
|
cfg.CheckManager.API.TokenApp = "consul"
|
|
|
|
}
|
|
|
|
|
2016-07-18 13:34:43 +00:00
|
|
|
if cfg.CheckManager.Check.SearchTag == "" {
|
|
|
|
cfg.CheckManager.Check.SearchTag = "service:consul"
|
|
|
|
}
|
|
|
|
|
|
|
|
sink, err := circonus.NewCirconusSink(cfg)
|
|
|
|
if err != nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("Failed to start Circonus sink. Got: %s", err))
|
2016-07-18 13:34:43 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
sink.Start()
|
|
|
|
fanout = append(fanout, sink)
|
|
|
|
}
|
|
|
|
|
2014-09-02 18:26:08 +00:00
|
|
|
// Initialize the global sink
|
|
|
|
if len(fanout) > 0 {
|
|
|
|
fanout = append(fanout, inm)
|
|
|
|
metrics.NewGlobal(metricsConf, fanout)
|
2014-02-20 22:59:54 +00:00
|
|
|
} else {
|
|
|
|
metricsConf.EnableHostname = false
|
|
|
|
metrics.NewGlobal(metricsConf, inm)
|
|
|
|
}
|
2014-02-20 21:51:51 +00:00
|
|
|
|
2013-12-21 00:39:32 +00:00
|
|
|
// Create the agent
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Output("Starting Consul agent...")
|
2017-05-19 15:51:39 +00:00
|
|
|
agent, err := NewAgent(config)
|
2017-05-19 09:53:41 +00:00
|
|
|
if err != nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("Error creating agent: %s", err))
|
2017-05-19 15:51:39 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
agent.LogOutput = logOutput
|
|
|
|
agent.LogWriter = logWriter
|
|
|
|
if err := agent.Start(); err != nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("Error starting agent: %s", err))
|
2013-12-20 01:14:46 +00:00
|
|
|
return 1
|
|
|
|
}
|
2017-05-19 09:53:41 +00:00
|
|
|
|
|
|
|
// Setup update checking
|
|
|
|
if !config.DisableUpdateCheck {
|
|
|
|
version := config.Version
|
|
|
|
if config.VersionPrerelease != "" {
|
|
|
|
version += fmt.Sprintf("-%s", config.VersionPrerelease)
|
|
|
|
}
|
|
|
|
updateParams := &checkpoint.CheckParams{
|
|
|
|
Product: "consul",
|
|
|
|
Version: version,
|
|
|
|
}
|
|
|
|
if !config.DisableAnonymousSignature {
|
|
|
|
updateParams.SignatureFile = filepath.Join(config.DataDir, "checkpoint-signature")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Schedule a periodic check with expected interval of 24 hours
|
2017-05-22 11:13:44 +00:00
|
|
|
checkpoint.CheckInterval(updateParams, 24*time.Hour, cmd.checkpointResults)
|
2017-05-19 09:53:41 +00:00
|
|
|
|
|
|
|
// Do an immediate check within the next 30 seconds
|
|
|
|
go func() {
|
|
|
|
time.Sleep(lib.RandomStagger(30 * time.Second))
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.checkpointResults(checkpoint.Check(updateParams))
|
2017-05-19 09:53:41 +00:00
|
|
|
}()
|
2013-12-23 19:38:51 +00:00
|
|
|
}
|
2015-08-25 23:40:55 +00:00
|
|
|
|
2017-06-02 10:17:55 +00:00
|
|
|
defer agent.Shutdown()
|
2017-05-19 09:53:41 +00:00
|
|
|
|
2014-04-11 23:59:16 +00:00
|
|
|
// Join startup nodes if specified
|
2017-06-02 10:17:55 +00:00
|
|
|
if err := cmd.startupJoin(agent, config); err != nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(err.Error())
|
2014-04-11 23:59:16 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2014-11-14 15:02:42 +00:00
|
|
|
// Join startup nodes if specified
|
2017-06-02 10:17:55 +00:00
|
|
|
if err := cmd.startupJoinWan(agent, config); err != nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(err.Error())
|
2014-11-14 15:02:42 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2014-11-14 19:39:19 +00:00
|
|
|
// Get the new client http listener addr
|
2017-02-10 23:38:39 +00:00
|
|
|
var httpAddr net.Addr
|
|
|
|
if config.Ports.HTTP != -1 {
|
|
|
|
httpAddr, err = config.ClientListener(config.Addresses.HTTP, config.Ports.HTTP)
|
2017-02-11 00:55:54 +00:00
|
|
|
} else if config.Ports.HTTPS != -1 {
|
2017-02-10 23:38:39 +00:00
|
|
|
httpAddr, err = config.ClientListener(config.Addresses.HTTPS, config.Ports.HTTPS)
|
2017-02-11 00:55:54 +00:00
|
|
|
} else if len(config.WatchPlans) > 0 {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error("Error: cannot use watches if both HTTP and HTTPS are disabled")
|
2017-02-11 00:55:54 +00:00
|
|
|
return 1
|
2017-02-10 23:38:39 +00:00
|
|
|
}
|
2014-08-21 20:09:13 +00:00
|
|
|
if err != nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("Failed to determine HTTP address: %v", err))
|
2014-08-21 20:09:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Register the watches
|
|
|
|
for _, wp := range config.WatchPlans {
|
2017-04-21 00:46:29 +00:00
|
|
|
go func(wp *watch.Plan) {
|
2016-10-04 15:36:41 +00:00
|
|
|
wp.Handler = makeWatchHandler(logOutput, wp.Exempt["handler"])
|
2017-05-22 11:13:44 +00:00
|
|
|
wp.LogOutput = cmd.logOutput
|
2017-02-10 23:38:39 +00:00
|
|
|
addr := httpAddr.String()
|
|
|
|
// If it's a unix socket, prefix with unix:// so the client initializes correctly
|
|
|
|
if httpAddr.Network() == "unix" {
|
|
|
|
addr = "unix://" + addr
|
|
|
|
}
|
|
|
|
if err := wp.Run(addr); err != nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("Error running watch: %v", err))
|
2014-08-21 20:09:13 +00:00
|
|
|
}
|
2014-09-15 17:55:57 +00:00
|
|
|
}(wp)
|
2014-08-21 20:09:13 +00:00
|
|
|
}
|
|
|
|
|
2014-01-16 01:14:50 +00:00
|
|
|
// Let the agent know we've finished registration
|
2017-06-02 10:17:55 +00:00
|
|
|
agent.StartSync()
|
2017-05-22 11:13:44 +00:00
|
|
|
|
|
|
|
cmd.UI.Output("Consul agent running!")
|
|
|
|
cmd.UI.Info(fmt.Sprintf(" Version: '%s'", cmd.HumanVersion))
|
|
|
|
cmd.UI.Info(fmt.Sprintf(" Node ID: '%s'", config.NodeID))
|
|
|
|
cmd.UI.Info(fmt.Sprintf(" Node name: '%s'", config.NodeName))
|
|
|
|
cmd.UI.Info(fmt.Sprintf(" Datacenter: '%s'", config.Datacenter))
|
|
|
|
cmd.UI.Info(fmt.Sprintf(" Server: %v (bootstrap: %v)", config.Server, config.Bootstrap))
|
|
|
|
cmd.UI.Info(fmt.Sprintf(" Client Addr: %v (HTTP: %d, HTTPS: %d, DNS: %d)", config.ClientAddr,
|
2017-02-28 21:41:09 +00:00
|
|
|
config.Ports.HTTP, config.Ports.HTTPS, config.Ports.DNS))
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Info(fmt.Sprintf(" Cluster Addr: %v (LAN: %d, WAN: %d)", config.AdvertiseAddr,
|
2014-04-11 22:54:03 +00:00
|
|
|
config.Ports.SerfLan, config.Ports.SerfWan))
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Info(fmt.Sprintf("Gossip encrypt: %v, RPC-TLS: %v, TLS-Incoming: %v",
|
2017-06-02 10:17:55 +00:00
|
|
|
agent.GossipEncrypted(), config.VerifyOutgoing, config.VerifyIncoming))
|
2013-12-21 00:39:32 +00:00
|
|
|
|
|
|
|
// Enable log streaming
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Info("")
|
|
|
|
cmd.UI.Output("Log data will now stream in as it occurs:\n")
|
2013-12-21 00:39:32 +00:00
|
|
|
logGate.Flush()
|
|
|
|
|
2017-06-02 10:17:55 +00:00
|
|
|
return cmd.wait(agent, config)
|
2013-12-21 00:39:32 +00:00
|
|
|
}
|
|
|
|
|
2017-06-02 10:17:55 +00:00
|
|
|
// wait blocks until we get an exit-causing signal
|
|
|
|
func (cmd *Command) wait(agent *Agent, cfg *Config) int {
|
2013-12-21 00:39:32 +00:00
|
|
|
signalCh := make(chan os.Signal, 4)
|
|
|
|
signal.Notify(signalCh, os.Interrupt, syscall.SIGTERM, syscall.SIGHUP)
|
2016-11-30 17:42:10 +00:00
|
|
|
signal.Notify(signalCh, os.Interrupt, syscall.SIGTERM, syscall.SIGHUP, syscall.SIGPIPE)
|
2013-12-21 00:39:32 +00:00
|
|
|
|
|
|
|
// Wait for a signal
|
|
|
|
WAIT:
|
|
|
|
var sig os.Signal
|
2016-11-30 18:29:42 +00:00
|
|
|
var reloadErrCh chan error
|
2013-12-20 01:14:46 +00:00
|
|
|
select {
|
2013-12-21 00:39:32 +00:00
|
|
|
case s := <-signalCh:
|
|
|
|
sig = s
|
2017-06-02 10:17:55 +00:00
|
|
|
case ch := <-agent.ReloadCh():
|
2016-11-30 18:29:42 +00:00
|
|
|
sig = syscall.SIGHUP
|
|
|
|
reloadErrCh = ch
|
2017-05-22 11:13:44 +00:00
|
|
|
case <-cmd.ShutdownCh:
|
2013-12-21 00:39:32 +00:00
|
|
|
sig = os.Interrupt
|
2017-06-02 10:17:55 +00:00
|
|
|
case err := <-agent.RetryJoinCh():
|
2017-06-02 09:55:29 +00:00
|
|
|
cmd.UI.Error(err.Error())
|
2014-11-14 15:02:42 +00:00
|
|
|
return 1
|
2017-06-02 10:17:55 +00:00
|
|
|
case <-agent.ShutdownCh():
|
2013-12-21 00:39:32 +00:00
|
|
|
// Agent is already shutdown!
|
2013-12-20 01:14:46 +00:00
|
|
|
return 0
|
|
|
|
}
|
2013-12-21 00:39:32 +00:00
|
|
|
|
2017-03-29 06:46:58 +00:00
|
|
|
// Skip SIGPIPE signals and skip logging whenever such signal is received as well
|
2016-11-30 17:42:10 +00:00
|
|
|
if sig == syscall.SIGPIPE {
|
|
|
|
goto WAIT
|
|
|
|
}
|
|
|
|
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Output(fmt.Sprintf("Caught signal: %v", sig))
|
2017-03-29 06:46:58 +00:00
|
|
|
|
2013-12-21 00:39:32 +00:00
|
|
|
// Check if this is a SIGHUP
|
|
|
|
if sig == syscall.SIGHUP {
|
2017-06-02 10:17:55 +00:00
|
|
|
conf, err := cmd.handleReload(agent, cfg)
|
2016-11-30 18:29:42 +00:00
|
|
|
if conf != nil {
|
2017-05-22 11:17:31 +00:00
|
|
|
cfg = conf
|
2015-05-31 05:50:08 +00:00
|
|
|
}
|
2016-11-30 18:29:42 +00:00
|
|
|
if err != nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(err.Error())
|
2016-11-30 18:29:42 +00:00
|
|
|
}
|
|
|
|
// Send result back if reload was called via HTTP
|
|
|
|
if reloadErrCh != nil {
|
|
|
|
reloadErrCh <- err
|
|
|
|
}
|
2013-12-21 00:39:32 +00:00
|
|
|
goto WAIT
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if we should do a graceful leave
|
|
|
|
graceful := false
|
2017-05-22 11:17:31 +00:00
|
|
|
if sig == os.Interrupt && !(*cfg.SkipLeaveOnInt) {
|
2013-12-21 00:39:32 +00:00
|
|
|
graceful = true
|
2017-05-22 11:17:31 +00:00
|
|
|
} else if sig == syscall.SIGTERM && (*cfg.LeaveOnTerm) {
|
2013-12-21 00:39:32 +00:00
|
|
|
graceful = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bail fast if not doing a graceful leave
|
|
|
|
if !graceful {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt a graceful leave
|
|
|
|
gracefulCh := make(chan struct{})
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Output("Gracefully shutting down agent...")
|
2013-12-21 00:39:32 +00:00
|
|
|
go func() {
|
2017-06-02 10:17:55 +00:00
|
|
|
if err := agent.Leave(); err != nil {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Error(fmt.Sprintf("Error: %s", err))
|
2013-12-21 00:39:32 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
close(gracefulCh)
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Wait for leave or another signal
|
|
|
|
select {
|
|
|
|
case <-signalCh:
|
|
|
|
return 1
|
|
|
|
case <-time.After(gracefulTimeout):
|
|
|
|
return 1
|
|
|
|
case <-gracefulCh:
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// handleReload is invoked when we should reload our configs, e.g. SIGHUP
|
2017-06-02 10:17:55 +00:00
|
|
|
func (cmd *Command) handleReload(agent *Agent, cfg *Config) (*Config, error) {
|
2017-05-22 11:13:44 +00:00
|
|
|
cmd.UI.Output("Reloading configuration...")
|
2016-11-30 18:29:42 +00:00
|
|
|
var errs error
|
2017-06-02 12:56:49 +00:00
|
|
|
newCfg := cmd.readConfig()
|
|
|
|
if newCfg == nil {
|
2016-11-30 18:29:42 +00:00
|
|
|
errs = multierror.Append(errs, fmt.Errorf("Failed to reload configs"))
|
2017-05-22 11:17:31 +00:00
|
|
|
return cfg, errs
|
2014-02-07 20:03:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Change the log level
|
2017-06-02 12:56:49 +00:00
|
|
|
minLevel := logutils.LogLevel(strings.ToUpper(newCfg.LogLevel))
|
2017-05-22 11:13:44 +00:00
|
|
|
if logger.ValidateLevelFilter(minLevel, cmd.logFilter) {
|
|
|
|
cmd.logFilter.SetMinLevel(minLevel)
|
2014-02-07 20:03:14 +00:00
|
|
|
} else {
|
2016-11-30 18:29:42 +00:00
|
|
|
errs = multierror.Append(fmt.Errorf(
|
2014-02-07 20:03:14 +00:00
|
|
|
"Invalid log level: %s. Valid log levels are: %v",
|
2017-05-22 11:13:44 +00:00
|
|
|
minLevel, cmd.logFilter.Levels))
|
2014-02-07 20:03:14 +00:00
|
|
|
|
|
|
|
// Keep the current log level
|
2017-06-02 12:56:49 +00:00
|
|
|
newCfg.LogLevel = cfg.LogLevel
|
2014-02-07 20:03:14 +00:00
|
|
|
}
|
|
|
|
|
2017-06-02 12:56:49 +00:00
|
|
|
ok, errs := agent.ReloadConfig(newCfg)
|
|
|
|
if ok {
|
|
|
|
return newCfg, errs
|
2014-08-21 20:09:13 +00:00
|
|
|
}
|
2017-06-02 12:56:49 +00:00
|
|
|
return cfg, errs
|
2015-08-26 01:27:07 +00:00
|
|
|
}
|
|
|
|
|
2017-05-22 11:13:44 +00:00
|
|
|
func (cmd *Command) Synopsis() string {
|
2013-12-19 20:18:06 +00:00
|
|
|
return "Runs a Consul agent"
|
|
|
|
}
|
|
|
|
|
2017-05-22 11:13:44 +00:00
|
|
|
func (cmd *Command) Help() string {
|
2013-12-19 20:18:06 +00:00
|
|
|
helpText := `
|
|
|
|
Usage: consul agent [options]
|
|
|
|
|
|
|
|
Starts the Consul agent and runs until an interrupt is received. The
|
2014-04-11 22:22:35 +00:00
|
|
|
agent represents a single node in a cluster.
|
2013-12-19 20:18:06 +00:00
|
|
|
|
2017-05-22 11:13:44 +00:00
|
|
|
` + cmd.Command.Help()
|
2017-02-25 02:11:05 +00:00
|
|
|
|
2013-12-19 20:18:06 +00:00
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|
2017-05-24 13:22:56 +00:00
|
|
|
|
|
|
|
func printJSON(name string, v interface{}) {
|
|
|
|
fmt.Println(name)
|
|
|
|
b, err := json.MarshalIndent(v, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("%#v\n", v)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
fmt.Println(string(b))
|
|
|
|
}
|