2013-12-19 20:18:06 +00:00
|
|
|
package agent
|
|
|
|
|
|
|
|
import (
|
2013-12-21 00:39:32 +00:00
|
|
|
"flag"
|
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"
|
2014-02-23 01:43:12 +00:00
|
|
|
"runtime"
|
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"
|
2015-04-10 05:58:35 +00:00
|
|
|
"github.com/hashicorp/consul-migrate/migrator"
|
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"
|
2014-06-16 21:36:12 +00:00
|
|
|
"github.com/hashicorp/go-syslog"
|
|
|
|
"github.com/hashicorp/logutils"
|
2015-02-05 02:06:36 +00:00
|
|
|
scada "github.com/hashicorp/scada-client"
|
2014-06-16 21:36:12 +00:00
|
|
|
"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 {
|
2014-06-06 21:40:22 +00:00
|
|
|
Revision string
|
|
|
|
Version string
|
|
|
|
VersionPrerelease string
|
|
|
|
Ui cli.Ui
|
|
|
|
ShutdownCh <-chan struct{}
|
|
|
|
args []string
|
|
|
|
logFilter *logutils.LevelFilter
|
2014-08-21 20:09:13 +00:00
|
|
|
logOutput io.Writer
|
2014-06-06 21:40:22 +00:00
|
|
|
agent *Agent
|
|
|
|
rpcServer *AgentRPC
|
2014-11-14 19:39:19 +00:00
|
|
|
httpServers []*HTTPServer
|
2014-06-06 21:40:22 +00:00
|
|
|
dnsServer *DNSServer
|
2015-02-05 02:06:36 +00:00
|
|
|
scadaProvider *scada.Provider
|
2013-12-21 00:39:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// readConfig is responsible for setup of our configuration using
|
|
|
|
// the command line and any file configs
|
|
|
|
func (c *Command) readConfig() *Config {
|
|
|
|
var cmdConfig Config
|
|
|
|
var configFiles []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
|
2013-12-21 00:39:32 +00:00
|
|
|
cmdFlags := flag.NewFlagSet("agent", flag.ContinueOnError)
|
|
|
|
cmdFlags.Usage = func() { c.Ui.Output(c.Help()) }
|
2014-04-11 22:22:35 +00:00
|
|
|
|
|
|
|
cmdFlags.Var((*AppendSliceValue)(&configFiles), "config-file", "json file to read config from")
|
|
|
|
cmdFlags.Var((*AppendSliceValue)(&configFiles), "config-dir", "directory of json files to read")
|
2015-02-21 06:45:52 +00:00
|
|
|
cmdFlags.Var((*AppendSliceValue)(&dnsRecursors), "recursor", "address of an upstream DNS server")
|
2014-04-11 22:22:35 +00:00
|
|
|
|
2013-12-21 00:39:32 +00:00
|
|
|
cmdFlags.StringVar(&cmdConfig.LogLevel, "log-level", "", "log level")
|
|
|
|
cmdFlags.StringVar(&cmdConfig.NodeName, "node", "", "node name")
|
|
|
|
cmdFlags.StringVar(&cmdConfig.Datacenter, "dc", "", "node datacenter")
|
2014-04-11 22:22:35 +00:00
|
|
|
cmdFlags.StringVar(&cmdConfig.DataDir, "data-dir", "", "path to the data directory")
|
2014-04-23 19:37:53 +00:00
|
|
|
cmdFlags.StringVar(&cmdConfig.UiDir, "ui-dir", "", "path to the web UI directory")
|
2014-05-06 03:29:50 +00:00
|
|
|
cmdFlags.StringVar(&cmdConfig.PidFile, "pid-file", "", "path to file to store PID")
|
2014-08-22 22:08:15 +00:00
|
|
|
cmdFlags.StringVar(&cmdConfig.EncryptKey, "encrypt", "", "gossip encryption key")
|
2014-09-15 00:31:44 +00:00
|
|
|
|
2013-12-25 00:48:07 +00:00
|
|
|
cmdFlags.BoolVar(&cmdConfig.Server, "server", false, "run agent as server")
|
|
|
|
cmdFlags.BoolVar(&cmdConfig.Bootstrap, "bootstrap", false, "enable server bootstrap mode")
|
2014-06-20 00:08:48 +00:00
|
|
|
cmdFlags.IntVar(&cmdConfig.BootstrapExpect, "bootstrap-expect", 0, "enable automatic bootstrap via expect mode")
|
2015-03-20 14:22:13 +00:00
|
|
|
cmdFlags.StringVar(&cmdConfig.Domain, "domain", "", "domain to use for DNS interface")
|
2014-04-11 22:22:35 +00:00
|
|
|
|
2014-11-14 19:39:19 +00:00
|
|
|
cmdFlags.StringVar(&cmdConfig.ClientAddr, "client", "", "address to bind client listeners to (DNS, HTTP, HTTPS, RPC)")
|
2014-04-11 22:22:35 +00:00
|
|
|
cmdFlags.StringVar(&cmdConfig.BindAddr, "bind", "", "address to bind server listeners to")
|
2014-05-16 17:49:36 +00:00
|
|
|
cmdFlags.StringVar(&cmdConfig.AdvertiseAddr, "advertise", "", "address to advertise instead of bind addr")
|
2015-03-28 14:48:06 +00:00
|
|
|
cmdFlags.StringVar(&cmdConfig.AdvertiseAddrWan, "advertise-wan", "", "address to advertise on wan instead of bind or advertise addr")
|
2014-04-11 22:22:35 +00:00
|
|
|
|
2015-02-06 20:44:55 +00:00
|
|
|
cmdFlags.StringVar(&cmdConfig.AtlasInfrastructure, "atlas", "", "infrastructure name in Atlas")
|
2015-02-05 01:23:42 +00:00
|
|
|
cmdFlags.StringVar(&cmdConfig.AtlasToken, "atlas-token", "", "authentication token for Atlas")
|
2015-02-05 02:45:08 +00:00
|
|
|
cmdFlags.BoolVar(&cmdConfig.AtlasJoin, "atlas-join", false, "auto-join with Atlas")
|
2015-02-05 01:23:42 +00:00
|
|
|
|
2014-03-09 22:57:03 +00:00
|
|
|
cmdFlags.IntVar(&cmdConfig.Protocol, "protocol", -1, "protocol version")
|
2014-04-11 22:22:35 +00:00
|
|
|
|
2014-05-21 19:06:03 +00:00
|
|
|
cmdFlags.BoolVar(&cmdConfig.EnableSyslog, "syslog", false,
|
|
|
|
"enable logging to syslog facility")
|
2014-05-21 19:32:24 +00:00
|
|
|
cmdFlags.BoolVar(&cmdConfig.RejoinAfterLeave, "rejoin", false,
|
|
|
|
"enable re-joining after a previous leave")
|
2014-04-11 23:59:16 +00:00
|
|
|
cmdFlags.Var((*AppendSliceValue)(&cmdConfig.StartJoin), "join",
|
|
|
|
"address of agent to join on startup")
|
2014-11-17 22:14:59 +00:00
|
|
|
cmdFlags.Var((*AppendSliceValue)(&cmdConfig.StartJoinWan), "join-wan",
|
2014-11-14 15:02:42 +00:00
|
|
|
"address of agent to join -wan on startup")
|
2014-10-12 17:50:15 +00:00
|
|
|
cmdFlags.Var((*AppendSliceValue)(&cmdConfig.RetryJoin), "retry-join",
|
|
|
|
"address of agent to join on startup with retry")
|
|
|
|
cmdFlags.IntVar(&cmdConfig.RetryMaxAttempts, "retry-max", 0,
|
|
|
|
"number of retries for joining")
|
|
|
|
cmdFlags.StringVar(&retryInterval, "retry-interval", "",
|
|
|
|
"interval between join attempts")
|
2014-11-17 22:14:59 +00:00
|
|
|
cmdFlags.Var((*AppendSliceValue)(&cmdConfig.RetryJoinWan), "retry-join-wan",
|
2014-11-14 15:02:42 +00:00
|
|
|
"address of agent to join -wan on startup with retry")
|
2014-11-17 22:14:59 +00:00
|
|
|
cmdFlags.IntVar(&cmdConfig.RetryMaxAttemptsWan, "retry-max-wan", 0,
|
2014-11-14 15:02:42 +00:00
|
|
|
"number of retries for joining -wan")
|
2014-11-17 22:14:59 +00:00
|
|
|
cmdFlags.StringVar(&retryIntervalWan, "retry-interval-wan", "",
|
2014-11-14 15:02:42 +00:00
|
|
|
"interval between join -wan attempts")
|
2014-04-11 23:59:16 +00:00
|
|
|
|
2013-12-21 00:39:32 +00:00
|
|
|
if err := cmdFlags.Parse(c.args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-10-12 17:50:15 +00:00
|
|
|
if retryInterval != "" {
|
|
|
|
dur, err := time.ParseDuration(retryInterval)
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error: %s", err))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
cmdConfig.RetryInterval = dur
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error: %s", err))
|
|
|
|
return nil
|
|
|
|
}
|
2014-11-17 22:14:59 +00:00
|
|
|
cmdConfig.RetryIntervalWan = dur
|
2014-11-14 15:02:42 +00:00
|
|
|
}
|
|
|
|
|
2013-12-21 00:39:32 +00:00
|
|
|
config := DefaultConfig()
|
|
|
|
if len(configFiles) > 0 {
|
|
|
|
fileConfig, err := ReadConfigPaths(configFiles)
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
config = MergeConfig(config, fileConfig)
|
|
|
|
}
|
|
|
|
|
2015-02-21 06:45:52 +00:00
|
|
|
cmdConfig.DNSRecursors = append(cmdConfig.DNSRecursors, dnsRecursors...)
|
|
|
|
|
2013-12-21 00:39:32 +00:00
|
|
|
config = MergeConfig(config, &cmdConfig)
|
|
|
|
|
|
|
|
if config.NodeName == "" {
|
|
|
|
hostname, err := os.Hostname()
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error determining hostname: %s", err))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
config.NodeName = hostname
|
|
|
|
}
|
|
|
|
|
2014-10-03 05:05:00 +00:00
|
|
|
// Ensure we have a data directory
|
|
|
|
if config.DataDir == "" {
|
|
|
|
c.Ui.Error("Must specify data directory using -data-dir")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-09-15 00:31:44 +00:00
|
|
|
if config.EncryptKey != "" {
|
|
|
|
if _, err := config.EncryptBytes(); err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Invalid encryption key: %s", err))
|
|
|
|
return nil
|
|
|
|
}
|
2014-10-10 18:13:30 +00:00
|
|
|
keyfileLAN := filepath.Join(config.DataDir, serfLANKeyring)
|
|
|
|
if _, err := os.Stat(keyfileLAN); err == nil {
|
2015-02-20 02:51:32 +00:00
|
|
|
c.Ui.Error("WARNING: LAN keyring exists but -encrypt given, using keyring")
|
2014-10-03 05:05:00 +00:00
|
|
|
}
|
|
|
|
if config.Server {
|
2014-10-10 18:13:30 +00:00
|
|
|
keyfileWAN := filepath.Join(config.DataDir, serfWANKeyring)
|
|
|
|
if _, err := os.Stat(keyfileWAN); err == nil {
|
2015-02-20 02:51:32 +00:00
|
|
|
c.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.
|
|
|
|
config.Datacenter = strings.ToLower(config.Datacenter)
|
|
|
|
|
2015-02-19 22:45:47 +00:00
|
|
|
// Verify datacenter is valid
|
2014-06-09 18:57:15 +00:00
|
|
|
if !validDatacenter.MatchString(config.Datacenter) {
|
|
|
|
c.Ui.Error("Datacenter must be alpha-numeric with underscores and hypens only")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-02-23 02:58:15 +00:00
|
|
|
// Only allow bootstrap mode when acting as a server
|
|
|
|
if config.Bootstrap && !config.Server {
|
|
|
|
c.Ui.Error("Bootstrap mode cannot be enabled when server mode is not enabled")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-06-16 21:36:12 +00:00
|
|
|
// Expect can only work when acting as a server
|
2014-06-20 00:08:48 +00:00
|
|
|
if config.BootstrapExpect != 0 && !config.Server {
|
2014-06-16 21:36:12 +00:00
|
|
|
c.Ui.Error("Expect mode cannot be enabled when server mode is not enabled")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Expect & Bootstrap are mutually exclusive
|
2014-06-20 00:08:48 +00:00
|
|
|
if config.BootstrapExpect != 0 && config.Bootstrap {
|
2014-06-18 16:03:30 +00:00
|
|
|
c.Ui.Error("Bootstrap cannot be provided with an expected server count")
|
2014-06-16 21:36:12 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-08-21 20:09:13 +00:00
|
|
|
// Compile all the watches
|
|
|
|
for _, params := range config.Watches {
|
|
|
|
// Parse the watches, excluding the handler
|
|
|
|
wp, err := watch.ParseExempt(params, []string{"handler"})
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to parse watch (%#v): %v", params, err))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the handler
|
|
|
|
if err := verifyWatchHandler(wp.Exempt["handler"]); err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to setup watch handler (%#v): %v", params, err))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Store the watch plan
|
|
|
|
config.WatchPlans = append(config.WatchPlans, wp)
|
|
|
|
}
|
|
|
|
|
2014-06-16 21:36:12 +00:00
|
|
|
// Warn if we are in expect mode
|
2014-06-20 00:08:48 +00:00
|
|
|
if config.BootstrapExpect == 1 {
|
|
|
|
c.Ui.Error("WARNING: BootstrapExpect Mode is specified as 1; this is the same as Bootstrap mode.")
|
|
|
|
config.BootstrapExpect = 0
|
|
|
|
config.Bootstrap = true
|
|
|
|
} else if config.BootstrapExpect > 0 {
|
|
|
|
c.Ui.Error(fmt.Sprintf("WARNING: Expect Mode enabled, expecting %d servers", config.BootstrapExpect))
|
2014-06-16 21:36:12 +00:00
|
|
|
}
|
|
|
|
|
2014-02-23 02:58:15 +00:00
|
|
|
// Warn if we are in bootstrap mode
|
|
|
|
if config.Bootstrap {
|
|
|
|
c.Ui.Error("WARNING: Bootstrap mode enabled! Do not enable unless necessary")
|
|
|
|
}
|
|
|
|
|
2014-04-14 23:49:43 +00:00
|
|
|
// Warn if using windows as a server
|
|
|
|
if config.Server && runtime.GOOS == "windows" {
|
|
|
|
c.Ui.Error("WARNING: Windows is not recommended as a Consul server. Do not use in production.")
|
|
|
|
}
|
|
|
|
|
2014-06-06 21:40:22 +00:00
|
|
|
// Set the version info
|
|
|
|
config.Revision = c.Revision
|
|
|
|
config.Version = c.Version
|
|
|
|
config.VersionPrerelease = c.VersionPrerelease
|
|
|
|
|
2013-12-21 00:39:32 +00:00
|
|
|
return config
|
|
|
|
}
|
|
|
|
|
|
|
|
// setupLoggers is used to setup the logGate, logWriter, and our logOutput
|
|
|
|
func (c *Command) setupLoggers(config *Config) (*GatedWriter, *logWriter, io.Writer) {
|
|
|
|
// Setup logging. First create the gated log writer, which will
|
|
|
|
// store logs until we're ready to show them. Then create the level
|
|
|
|
// filter, filtering logs of the specified level.
|
|
|
|
logGate := &GatedWriter{
|
|
|
|
Writer: &cli.UiWriter{Ui: c.Ui},
|
|
|
|
}
|
|
|
|
|
|
|
|
c.logFilter = LevelFilter()
|
|
|
|
c.logFilter.MinLevel = logutils.LogLevel(strings.ToUpper(config.LogLevel))
|
|
|
|
c.logFilter.Writer = logGate
|
|
|
|
if !ValidateLevelFilter(c.logFilter.MinLevel, c.logFilter) {
|
|
|
|
c.Ui.Error(fmt.Sprintf(
|
|
|
|
"Invalid log level: %s. Valid log levels are: %v",
|
|
|
|
c.logFilter.MinLevel, c.logFilter.Levels))
|
|
|
|
return nil, nil, nil
|
|
|
|
}
|
|
|
|
|
2014-05-21 19:06:03 +00:00
|
|
|
// Check if syslog is enabled
|
|
|
|
var syslog io.Writer
|
|
|
|
if config.EnableSyslog {
|
2014-06-11 17:28:55 +00:00
|
|
|
l, err := gsyslog.NewLogger(gsyslog.LOG_NOTICE, config.SyslogFacility, "consul")
|
2014-05-21 19:06:03 +00:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Syslog setup failed: %v", err))
|
|
|
|
return nil, nil, nil
|
|
|
|
}
|
2014-10-14 05:38:12 +00:00
|
|
|
syslog = &SyslogWrapper{l, c.logFilter}
|
2014-05-21 19:06:03 +00:00
|
|
|
}
|
|
|
|
|
2013-12-21 00:39:32 +00:00
|
|
|
// Create a log writer, and wrap a logOutput around it
|
|
|
|
logWriter := NewLogWriter(512)
|
2014-05-21 19:06:03 +00:00
|
|
|
var logOutput io.Writer
|
|
|
|
if syslog != nil {
|
|
|
|
logOutput = io.MultiWriter(c.logFilter, logWriter, syslog)
|
|
|
|
} else {
|
|
|
|
logOutput = io.MultiWriter(c.logFilter, logWriter)
|
|
|
|
}
|
2014-08-21 20:09:13 +00:00
|
|
|
c.logOutput = logOutput
|
2013-12-21 00:39:32 +00:00
|
|
|
return logGate, logWriter, logOutput
|
2013-12-19 20:18:06 +00:00
|
|
|
}
|
|
|
|
|
2013-12-23 19:38:51 +00:00
|
|
|
// setupAgent is used to start the agent and various interfaces
|
2013-12-30 23:27:41 +00:00
|
|
|
func (c *Command) setupAgent(config *Config, logOutput io.Writer, logWriter *logWriter) error {
|
2013-12-23 19:38:51 +00:00
|
|
|
c.Ui.Output("Starting Consul agent...")
|
|
|
|
agent, err := Create(config, logOutput)
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error starting agent: %s", err))
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
c.agent = agent
|
|
|
|
|
2013-12-30 23:27:41 +00:00
|
|
|
// Setup the RPC listener
|
2014-09-02 19:47:40 +00:00
|
|
|
rpcAddr, err := config.ClientListener(config.Addresses.RPC, config.Ports.RPC)
|
2014-04-11 22:22:35 +00:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Invalid RPC bind address: %s", err))
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-01-20 21:44:27 +00:00
|
|
|
// Clear the domain socket file if it exists
|
|
|
|
socketPath, isSocket := unixSocketAddr(config.Addresses.RPC)
|
|
|
|
if isSocket {
|
|
|
|
if _, err := os.Stat(socketPath); !os.IsNotExist(err) {
|
|
|
|
agent.logger.Printf("[WARN] agent: Replacing socket %q", socketPath)
|
|
|
|
}
|
|
|
|
if err := os.Remove(socketPath); err != nil && !os.IsNotExist(err) {
|
|
|
|
c.Ui.Output(fmt.Sprintf("Error removing socket file: %s", err))
|
|
|
|
return err
|
2015-01-16 01:24:15 +00:00
|
|
|
}
|
2015-01-08 16:38:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
rpcListener, err := net.Listen(rpcAddr.Network(), rpcAddr.String())
|
2013-12-30 23:27:41 +00:00
|
|
|
if err != nil {
|
|
|
|
agent.Shutdown()
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error starting RPC listener: %s", err))
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-01-20 21:44:27 +00:00
|
|
|
// Set up ownership/permission bits on the socket file
|
|
|
|
if isSocket {
|
|
|
|
if err := setFilePermissions(socketPath, config.UnixSockets); err != nil {
|
|
|
|
agent.Shutdown()
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error setting up socket: %s", err))
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-30 23:27:41 +00:00
|
|
|
// Start the IPC layer
|
2014-01-02 23:10:13 +00:00
|
|
|
c.Ui.Output("Starting Consul agent RPC...")
|
2013-12-30 23:27:41 +00:00
|
|
|
c.rpcServer = NewAgentRPC(agent, rpcListener, logOutput, logWriter)
|
|
|
|
|
2015-02-05 02:17:45 +00:00
|
|
|
// Enable the SCADA integration
|
|
|
|
var scadaList net.Listener
|
2015-02-06 20:44:55 +00:00
|
|
|
if config.AtlasInfrastructure != "" {
|
2015-02-05 02:17:45 +00:00
|
|
|
provider, list, err := NewProvider(config, logOutput)
|
|
|
|
if err != nil {
|
|
|
|
agent.Shutdown()
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error starting SCADA connection: %s", err))
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
c.scadaProvider = provider
|
|
|
|
scadaList = list
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.Ports.HTTP > 0 || config.Ports.HTTPS > 0 || scadaList != nil {
|
|
|
|
servers, err := NewHTTPServers(agent, config, scadaList, logOutput)
|
2013-12-23 19:38:51 +00:00
|
|
|
if err != nil {
|
|
|
|
agent.Shutdown()
|
2014-11-25 19:06:33 +00:00
|
|
|
c.Ui.Error(fmt.Sprintf("Error starting http servers: %s", err))
|
2013-12-23 19:38:51 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-11-14 19:39:19 +00:00
|
|
|
c.httpServers = servers
|
2013-12-23 19:38:51 +00:00
|
|
|
}
|
2014-01-02 23:10:13 +00:00
|
|
|
|
2014-04-11 22:22:35 +00:00
|
|
|
if config.Ports.DNS > 0 {
|
2014-09-02 19:47:40 +00:00
|
|
|
dnsAddr, err := config.ClientListener(config.Addresses.DNS, config.Ports.DNS)
|
2014-04-11 22:22:35 +00:00
|
|
|
if err != nil {
|
2015-01-08 16:38:09 +00:00
|
|
|
agent.Shutdown()
|
2014-04-11 22:22:35 +00:00
|
|
|
c.Ui.Error(fmt.Sprintf("Invalid DNS bind address: %s", err))
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-06-08 22:49:24 +00:00
|
|
|
server, err := NewDNSServer(agent, &config.DNSConfig, logOutput,
|
2014-10-31 19:19:41 +00:00
|
|
|
config.Domain, dnsAddr.String(), config.DNSRecursors)
|
2014-01-02 23:10:13 +00:00
|
|
|
if err != nil {
|
|
|
|
agent.Shutdown()
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error starting dns server: %s", err))
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
c.dnsServer = server
|
|
|
|
}
|
|
|
|
|
2014-09-02 21:23:43 +00:00
|
|
|
// Setup update checking
|
|
|
|
if !config.DisableUpdateCheck {
|
2015-02-08 06:30:31 +00:00
|
|
|
version := config.Version
|
|
|
|
if config.VersionPrerelease != "" {
|
|
|
|
version += fmt.Sprintf("-%s", config.VersionPrerelease)
|
|
|
|
}
|
2014-09-02 21:23:43 +00:00
|
|
|
updateParams := &checkpoint.CheckParams{
|
|
|
|
Product: "consul",
|
2015-02-08 06:30:31 +00:00
|
|
|
Version: version,
|
2014-09-02 21:23:43 +00:00
|
|
|
}
|
|
|
|
if !config.DisableAnonymousSignature {
|
|
|
|
updateParams.SignatureFile = filepath.Join(config.DataDir, "checkpoint-signature")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Schedule a periodic check with expected interval of 24 hours
|
|
|
|
checkpoint.CheckInterval(updateParams, 24*time.Hour, c.checkpointResults)
|
|
|
|
|
|
|
|
// Do an immediate check within the next 30 seconds
|
|
|
|
go func() {
|
|
|
|
time.Sleep(randomStagger(30 * time.Second))
|
|
|
|
c.checkpointResults(checkpoint.Check(updateParams))
|
|
|
|
}()
|
|
|
|
}
|
2013-12-23 19:38:51 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-09-02 21:23:43 +00:00
|
|
|
// checkpointResults is used to handler periodic results from our update checker
|
|
|
|
func (c *Command) checkpointResults(results *checkpoint.CheckResponse, err error) {
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to check for updates: %v", err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if results.Outdated {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Newer Consul version available: %s", results.CurrentVersion))
|
|
|
|
}
|
|
|
|
for _, alert := range results.Alerts {
|
|
|
|
switch alert.Level {
|
|
|
|
case "info":
|
|
|
|
c.Ui.Info(fmt.Sprintf("Bulletin [%s]: %s (%s)", alert.Level, alert.Message, alert.URL))
|
|
|
|
default:
|
|
|
|
c.Ui.Error(fmt.Sprintf("Bulletin [%s]: %s (%s)", alert.Level, alert.Message, alert.URL))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-11 23:59:16 +00:00
|
|
|
// startupJoin is invoked to handle any joins specified to take place at start time
|
|
|
|
func (c *Command) startupJoin(config *Config) error {
|
|
|
|
if len(config.StartJoin) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Ui.Output("Joining cluster...")
|
|
|
|
n, err := c.agent.JoinLAN(config.StartJoin)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Ui.Info(fmt.Sprintf("Join completed. Synced with %d initial agents", n))
|
|
|
|
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
|
|
|
|
func (c *Command) startupJoinWan(config *Config) error {
|
|
|
|
if len(config.StartJoinWan) == 0 {
|
2014-11-14 15:02:42 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Ui.Output("Joining -wan cluster...")
|
2014-11-17 22:14:59 +00:00
|
|
|
n, err := c.agent.JoinWAN(config.StartJoinWan)
|
2014-11-14 15:02:42 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Ui.Info(fmt.Sprintf("Join -wan completed. Synced with %d initial agents", n))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-10-12 19:45:40 +00:00
|
|
|
// retryJoin is used to handle retrying a join until it succeeds or all
|
|
|
|
// retries are exhausted.
|
2014-10-12 17:50:15 +00:00
|
|
|
func (c *Command) retryJoin(config *Config, errCh chan<- struct{}) {
|
|
|
|
if len(config.RetryJoin) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
logger := c.agent.logger
|
|
|
|
logger.Printf("[INFO] agent: Joining cluster...")
|
|
|
|
|
|
|
|
attempt := 0
|
|
|
|
for {
|
|
|
|
n, err := c.agent.JoinLAN(config.RetryJoin)
|
|
|
|
if err == nil {
|
|
|
|
logger.Printf("[INFO] agent: Join completed. Synced with %d initial agents", n)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
attempt++
|
|
|
|
if config.RetryMaxAttempts > 0 && attempt > config.RetryMaxAttempts {
|
|
|
|
logger.Printf("[ERROR] agent: max join retry exhausted, exiting")
|
|
|
|
close(errCh)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.Printf("[WARN] agent: Join failed: %v, retrying in %v", err,
|
|
|
|
config.RetryInterval)
|
|
|
|
time.Sleep(config.RetryInterval)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-17 22:14:59 +00:00
|
|
|
// retryJoinWan is used to handle retrying a join -wan until it succeeds or all
|
2014-11-14 15:02:42 +00:00
|
|
|
// retries are exhausted.
|
2014-11-17 22:14:59 +00:00
|
|
|
func (c *Command) retryJoinWan(config *Config, errCh chan<- struct{}) {
|
|
|
|
if len(config.RetryJoinWan) == 0 {
|
2014-11-14 15:02:42 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
logger := c.agent.logger
|
|
|
|
logger.Printf("[INFO] agent: Joining WAN cluster...")
|
|
|
|
|
|
|
|
attempt := 0
|
|
|
|
for {
|
2014-11-17 22:14:59 +00:00
|
|
|
n, err := c.agent.JoinWAN(config.RetryJoinWan)
|
2014-11-14 15:02:42 +00:00
|
|
|
if err == nil {
|
|
|
|
logger.Printf("[INFO] agent: Join -wan completed. Synced with %d initial agents", n)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
attempt++
|
2014-11-17 22:14:59 +00:00
|
|
|
if config.RetryMaxAttemptsWan > 0 && attempt > config.RetryMaxAttemptsWan {
|
2014-11-14 15:02:42 +00:00
|
|
|
logger.Printf("[ERROR] agent: max join -wan retry exhausted, exiting")
|
|
|
|
close(errCh)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.Printf("[WARN] agent: Join -wan failed: %v, retrying in %v", err,
|
2014-11-17 22:14:59 +00:00
|
|
|
config.RetryIntervalWan)
|
|
|
|
time.Sleep(config.RetryIntervalWan)
|
2014-11-14 15:02:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-03 05:05:00 +00:00
|
|
|
// gossipEncrypted determines if the consul instance is using symmetric
|
|
|
|
// encryption keys to protect gossip protocol messages.
|
|
|
|
func (c *Command) gossipEncrypted() bool {
|
|
|
|
if c.agent.config.EncryptKey != "" {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
server := c.agent.server
|
|
|
|
if server != nil {
|
|
|
|
return server.KeyManagerLAN() != nil || server.KeyManagerWAN() != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
client := c.agent.client
|
|
|
|
return client != nil && client.KeyManagerLAN() != nil
|
|
|
|
}
|
|
|
|
|
2013-12-19 20:18:06 +00:00
|
|
|
func (c *Command) Run(args []string) int {
|
2013-12-20 01:14:46 +00:00
|
|
|
c.Ui = &cli.PrefixedUi{
|
|
|
|
OutputPrefix: "==> ",
|
|
|
|
InfoPrefix: " ",
|
|
|
|
ErrorPrefix: "==> ",
|
|
|
|
Ui: c.Ui,
|
|
|
|
}
|
|
|
|
|
2013-12-21 00:39:32 +00:00
|
|
|
// Parse our configs
|
|
|
|
c.args = args
|
|
|
|
config := c.readConfig()
|
|
|
|
if config == nil {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2014-02-23 01:43:12 +00:00
|
|
|
// Check GOMAXPROCS
|
|
|
|
if runtime.GOMAXPROCS(0) == 1 {
|
|
|
|
c.Ui.Error("WARNING: It is highly recommended to set GOMAXPROCS higher than 1")
|
|
|
|
}
|
|
|
|
|
2013-12-21 00:39:32 +00:00
|
|
|
// Setup the log outputs
|
|
|
|
logGate, logWriter, logOutput := c.setupLoggers(config)
|
|
|
|
if logWriter == nil {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2014-02-20 21:51:51 +00:00
|
|
|
/* Setup telemetry
|
|
|
|
Aggregate on 10 second intervals for 1 minute. Expose the
|
|
|
|
metrics over stderr when there is a SIGUSR1 received.
|
|
|
|
*/
|
|
|
|
inm := metrics.NewInmemSink(10*time.Second, time.Minute)
|
|
|
|
metrics.DefaultInmemSignal(inm)
|
2015-05-03 23:46:20 +00:00
|
|
|
metricsConf := metrics.DefaultConfig(config.StatsitePrefix)
|
2014-02-20 22:59:54 +00:00
|
|
|
|
2014-09-02 18:26:08 +00:00
|
|
|
// Configure the statsite sink
|
|
|
|
var fanout metrics.FanoutSink
|
2014-02-20 22:59:54 +00:00
|
|
|
if config.StatsiteAddr != "" {
|
|
|
|
sink, err := metrics.NewStatsiteSink(config.StatsiteAddr)
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to start statsite sink. Got: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
2014-09-02 18:26:08 +00:00
|
|
|
fanout = append(fanout, sink)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Configure the statsd sink
|
|
|
|
if config.StatsdAddr != "" {
|
|
|
|
sink, err := metrics.NewStatsdSink(config.StatsdAddr)
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to start statsd sink. Got: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
fanout = append(fanout, sink)
|
|
|
|
}
|
2014-02-20 22:59:54 +00:00
|
|
|
|
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
|
|
|
|
2015-04-10 05:58:35 +00:00
|
|
|
// If we are starting a consul 0.5.1+ server for the first time,
|
|
|
|
// and we have data from a previous Consul version, attempt to
|
|
|
|
// migrate the data from LMDB to BoltDB using the migrator utility.
|
|
|
|
if config.Server {
|
2015-04-11 02:41:09 +00:00
|
|
|
// If the data dir doesn't exist yet (first start), then don't
|
|
|
|
// attempt to migrate.
|
|
|
|
if _, err := os.Stat(config.DataDir); os.IsNotExist(err) {
|
|
|
|
goto AFTER_MIGRATE
|
|
|
|
}
|
|
|
|
|
2015-04-10 05:58:35 +00:00
|
|
|
m, err := migrator.New(config.DataDir)
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2015-05-20 01:47:44 +00:00
|
|
|
// Handle progress info from the migrator utility. This will
|
|
|
|
// just dump out the current operation and progress every ~5
|
|
|
|
// percent progress.
|
|
|
|
doneCh := make(chan struct{})
|
|
|
|
go func() {
|
|
|
|
var lastOp string
|
|
|
|
var lastProgress float64
|
|
|
|
lastFlush := time.Now()
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case update := <-m.ProgressCh:
|
|
|
|
switch {
|
|
|
|
case lastOp != update.Op:
|
|
|
|
lastProgress = update.Progress
|
|
|
|
lastOp = update.Op
|
|
|
|
c.Ui.Output(update.Op)
|
|
|
|
c.Ui.Info(fmt.Sprintf("%.2f%%", update.Progress))
|
|
|
|
|
|
|
|
case update.Progress-lastProgress >= 5:
|
|
|
|
fallthrough
|
|
|
|
|
|
|
|
case time.Now().Sub(lastFlush) > time.Second:
|
|
|
|
fallthrough
|
|
|
|
|
|
|
|
case update.Progress == 100:
|
|
|
|
lastFlush = time.Now()
|
|
|
|
lastProgress = update.Progress
|
|
|
|
c.Ui.Info(fmt.Sprintf("%.2f%%", update.Progress))
|
|
|
|
}
|
|
|
|
case <-doneCh:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2015-05-12 19:58:32 +00:00
|
|
|
c.Ui.Output("Starting raft data migration...")
|
2015-04-10 05:58:35 +00:00
|
|
|
start := time.Now()
|
|
|
|
migrated, err := m.Migrate()
|
2015-05-20 01:47:44 +00:00
|
|
|
close(doneCh)
|
2015-04-10 05:58:35 +00:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to migrate raft data: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
if migrated {
|
|
|
|
duration := time.Now().Sub(start)
|
|
|
|
c.Ui.Output(fmt.Sprintf("Successfully migrated raft data in %s", duration))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-11 02:41:09 +00:00
|
|
|
AFTER_MIGRATE:
|
2013-12-21 00:39:32 +00:00
|
|
|
// Create the agent
|
2013-12-30 23:27:41 +00:00
|
|
|
if err := c.setupAgent(config, logOutput, logWriter); err != nil {
|
2013-12-20 01:14:46 +00:00
|
|
|
return 1
|
|
|
|
}
|
2013-12-23 19:38:51 +00:00
|
|
|
defer c.agent.Shutdown()
|
2013-12-30 23:27:41 +00:00
|
|
|
if c.rpcServer != nil {
|
|
|
|
defer c.rpcServer.Shutdown()
|
|
|
|
}
|
2015-01-16 12:11:34 +00:00
|
|
|
if c.dnsServer != nil {
|
|
|
|
defer c.dnsServer.Shutdown()
|
|
|
|
}
|
2014-11-18 22:56:48 +00:00
|
|
|
for _, server := range c.httpServers {
|
|
|
|
defer server.Shutdown()
|
2013-12-23 19:38:51 +00:00
|
|
|
}
|
2015-02-05 02:06:36 +00:00
|
|
|
if c.scadaProvider != nil {
|
|
|
|
defer c.scadaProvider.Shutdown()
|
|
|
|
}
|
2013-12-20 01:14:46 +00:00
|
|
|
|
2014-04-11 23:59:16 +00:00
|
|
|
// Join startup nodes if specified
|
|
|
|
if err := c.startupJoin(config); err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2014-11-14 15:02:42 +00:00
|
|
|
// Join startup nodes if specified
|
2014-11-17 22:14:59 +00:00
|
|
|
if err := c.startupJoinWan(config); err != nil {
|
2014-11-14 15:02:42 +00:00
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2014-11-14 19:39:19 +00:00
|
|
|
// Get the new client http listener addr
|
2015-01-13 17:50:17 +00:00
|
|
|
httpAddr, err := config.ClientListener(config.Addresses.HTTP, config.Ports.HTTP)
|
2014-08-21 20:09:13 +00:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to determine HTTP address: %v", err))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Register the watches
|
|
|
|
for _, wp := range config.WatchPlans {
|
2014-09-15 17:55:57 +00:00
|
|
|
go func(wp *watch.WatchPlan) {
|
2014-08-21 20:09:13 +00:00
|
|
|
wp.Handler = makeWatchHandler(logOutput, wp.Exempt["handler"])
|
|
|
|
wp.LogOutput = c.logOutput
|
2015-01-13 17:50:17 +00:00
|
|
|
if err := wp.Run(httpAddr.String()); err != nil {
|
2014-08-21 20:09:13 +00:00
|
|
|
c.Ui.Error(fmt.Sprintf("Error running watch: %v", err))
|
|
|
|
}
|
2014-09-15 17:55:57 +00:00
|
|
|
}(wp)
|
2014-08-21 20:09:13 +00:00
|
|
|
}
|
|
|
|
|
2014-10-04 02:20:58 +00:00
|
|
|
// Figure out if gossip is encrypted
|
2014-10-12 00:29:24 +00:00
|
|
|
var gossipEncrypted bool
|
|
|
|
if config.Server {
|
|
|
|
gossipEncrypted = c.agent.server.Encrypted()
|
|
|
|
} else {
|
|
|
|
gossipEncrypted = c.agent.client.Encrypted()
|
|
|
|
}
|
2014-10-04 02:20:58 +00:00
|
|
|
|
2015-02-05 02:06:36 +00:00
|
|
|
// Determine the Atlas cluster
|
2015-02-06 20:44:55 +00:00
|
|
|
atlas := "<disabled>"
|
|
|
|
if config.AtlasInfrastructure != "" {
|
|
|
|
atlas = fmt.Sprintf("(Infrastructure: '%s' Join: %v)", config.AtlasInfrastructure, config.AtlasJoin)
|
2015-02-05 02:06:36 +00:00
|
|
|
}
|
|
|
|
|
2014-01-16 01:14:50 +00:00
|
|
|
// Let the agent know we've finished registration
|
2014-01-21 19:52:25 +00:00
|
|
|
c.agent.StartSync()
|
2014-01-16 01:14:50 +00:00
|
|
|
|
2013-12-21 00:39:32 +00:00
|
|
|
c.Ui.Output("Consul agent running!")
|
2014-05-21 00:00:04 +00:00
|
|
|
c.Ui.Info(fmt.Sprintf(" Node name: '%s'", config.NodeName))
|
|
|
|
c.Ui.Info(fmt.Sprintf(" Datacenter: '%s'", config.Datacenter))
|
|
|
|
c.Ui.Info(fmt.Sprintf(" Server: %v (bootstrap: %v)", config.Server, config.Bootstrap))
|
2014-11-14 19:39:19 +00:00
|
|
|
c.Ui.Info(fmt.Sprintf(" Client Addr: %v (HTTP: %d, HTTPS: %d, DNS: %d, RPC: %d)", config.ClientAddr,
|
|
|
|
config.Ports.HTTP, config.Ports.HTTPS, config.Ports.DNS, config.Ports.RPC))
|
2014-05-21 00:00:04 +00:00
|
|
|
c.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))
|
2014-05-21 00:00:04 +00:00
|
|
|
c.Ui.Info(fmt.Sprintf("Gossip encrypt: %v, RPC-TLS: %v, TLS-Incoming: %v",
|
2014-10-04 02:20:58 +00:00
|
|
|
gossipEncrypted, config.VerifyOutgoing, config.VerifyIncoming))
|
2015-02-06 20:44:55 +00:00
|
|
|
c.Ui.Info(fmt.Sprintf(" Atlas: %s", atlas))
|
2013-12-21 00:39:32 +00:00
|
|
|
|
|
|
|
// Enable log streaming
|
|
|
|
c.Ui.Info("")
|
|
|
|
c.Ui.Output("Log data will now stream in as it occurs:\n")
|
|
|
|
logGate.Flush()
|
|
|
|
|
2014-10-12 17:50:15 +00:00
|
|
|
// Start retry join process
|
|
|
|
errCh := make(chan struct{})
|
|
|
|
go c.retryJoin(config, errCh)
|
|
|
|
|
2014-11-14 15:02:42 +00:00
|
|
|
// Start retry -wan join process
|
|
|
|
errWanCh := make(chan struct{})
|
2014-11-17 22:14:59 +00:00
|
|
|
go c.retryJoinWan(config, errWanCh)
|
2014-11-14 15:02:42 +00:00
|
|
|
|
2013-12-21 00:39:32 +00:00
|
|
|
// Wait for exit
|
2014-11-14 15:02:42 +00:00
|
|
|
return c.handleSignals(config, errCh, errWanCh)
|
2013-12-21 00:39:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// handleSignals blocks until we get an exit-causing signal
|
2014-11-17 22:14:59 +00:00
|
|
|
func (c *Command) handleSignals(config *Config, retryJoin <-chan struct{}, retryJoinWan <-chan struct{}) int {
|
2013-12-21 00:39:32 +00:00
|
|
|
signalCh := make(chan os.Signal, 4)
|
|
|
|
signal.Notify(signalCh, os.Interrupt, syscall.SIGTERM, syscall.SIGHUP)
|
|
|
|
|
|
|
|
// Wait for a signal
|
|
|
|
WAIT:
|
|
|
|
var sig os.Signal
|
2013-12-20 01:14:46 +00:00
|
|
|
select {
|
2013-12-21 00:39:32 +00:00
|
|
|
case s := <-signalCh:
|
|
|
|
sig = s
|
2014-06-11 17:53:28 +00:00
|
|
|
case <-c.rpcServer.ReloadCh():
|
|
|
|
sig = syscall.SIGHUP
|
2013-12-20 01:14:46 +00:00
|
|
|
case <-c.ShutdownCh:
|
2013-12-21 00:39:32 +00:00
|
|
|
sig = os.Interrupt
|
2014-10-12 17:50:15 +00:00
|
|
|
case <-retryJoin:
|
|
|
|
return 1
|
2014-11-17 22:14:59 +00:00
|
|
|
case <-retryJoinWan:
|
2014-11-14 15:02:42 +00:00
|
|
|
return 1
|
2013-12-23 19:38:51 +00:00
|
|
|
case <-c.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
|
|
|
c.Ui.Output(fmt.Sprintf("Caught signal: %v", sig))
|
|
|
|
|
|
|
|
// Check if this is a SIGHUP
|
|
|
|
if sig == syscall.SIGHUP {
|
2015-05-31 05:50:08 +00:00
|
|
|
if conf := c.handleReload(config); conf != nil {
|
|
|
|
config = conf
|
|
|
|
}
|
2013-12-21 00:39:32 +00:00
|
|
|
goto WAIT
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if we should do a graceful leave
|
|
|
|
graceful := false
|
|
|
|
if sig == os.Interrupt && !config.SkipLeaveOnInt {
|
|
|
|
graceful = true
|
|
|
|
} else if sig == syscall.SIGTERM && config.LeaveOnTerm {
|
|
|
|
graceful = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bail fast if not doing a graceful leave
|
|
|
|
if !graceful {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt a graceful leave
|
|
|
|
gracefulCh := make(chan struct{})
|
|
|
|
c.Ui.Output("Gracefully shutting down agent...")
|
|
|
|
go func() {
|
2013-12-23 19:38:51 +00:00
|
|
|
if err := c.agent.Leave(); err != nil {
|
2013-12-21 00:39:32 +00:00
|
|
|
c.Ui.Error(fmt.Sprintf("Error: %s", err))
|
|
|
|
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
|
2013-12-23 19:38:51 +00:00
|
|
|
func (c *Command) handleReload(config *Config) *Config {
|
2013-12-21 00:39:32 +00:00
|
|
|
c.Ui.Output("Reloading configuration...")
|
2014-02-07 20:03:14 +00:00
|
|
|
newConf := c.readConfig()
|
|
|
|
if newConf == nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to reload configs"))
|
|
|
|
return config
|
|
|
|
}
|
|
|
|
|
|
|
|
// Change the log level
|
|
|
|
minLevel := logutils.LogLevel(strings.ToUpper(newConf.LogLevel))
|
|
|
|
if ValidateLevelFilter(minLevel, c.logFilter) {
|
|
|
|
c.logFilter.SetMinLevel(minLevel)
|
|
|
|
} else {
|
|
|
|
c.Ui.Error(fmt.Sprintf(
|
|
|
|
"Invalid log level: %s. Valid log levels are: %v",
|
|
|
|
minLevel, c.logFilter.Levels))
|
|
|
|
|
|
|
|
// Keep the current log level
|
|
|
|
newConf.LogLevel = config.LogLevel
|
|
|
|
}
|
|
|
|
|
2014-02-07 20:19:56 +00:00
|
|
|
// Bulk update the services and checks
|
|
|
|
c.agent.PauseSync()
|
|
|
|
defer c.agent.ResumeSync()
|
|
|
|
|
2015-02-17 20:00:04 +00:00
|
|
|
// Snapshot the current state, and restore it afterwards
|
|
|
|
snap := c.agent.snapshotCheckState()
|
|
|
|
defer c.agent.restoreCheckState(snap)
|
|
|
|
|
2015-01-08 02:05:46 +00:00
|
|
|
// First unload all checks and services. This lets us begin the reload
|
|
|
|
// with a clean slate.
|
|
|
|
if err := c.agent.unloadServices(); err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Failed unloading services: %s", err))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if err := c.agent.unloadChecks(); err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Failed unloading checks: %s", err))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reload services and check definitions.
|
|
|
|
if err := c.agent.loadServices(newConf); err != nil {
|
2014-11-26 07:58:02 +00:00
|
|
|
c.Ui.Error(fmt.Sprintf("Failed reloading services: %s", err))
|
|
|
|
return nil
|
2014-02-07 20:19:56 +00:00
|
|
|
}
|
2015-01-08 02:05:46 +00:00
|
|
|
if err := c.agent.loadChecks(newConf); err != nil {
|
2014-11-26 07:58:02 +00:00
|
|
|
c.Ui.Error(fmt.Sprintf("Failed reloading checks: %s", err))
|
|
|
|
return nil
|
2014-02-07 20:19:56 +00:00
|
|
|
}
|
2014-02-07 20:03:14 +00:00
|
|
|
|
2014-08-21 20:09:13 +00:00
|
|
|
// Get the new client listener addr
|
2015-01-13 17:50:17 +00:00
|
|
|
httpAddr, err := newConf.ClientListener(config.Addresses.HTTP, config.Ports.HTTP)
|
2014-08-21 20:09:13 +00:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to determine HTTP address: %v", err))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deregister the old watches
|
|
|
|
for _, wp := range config.WatchPlans {
|
|
|
|
wp.Stop()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Register the new watches
|
|
|
|
for _, wp := range newConf.WatchPlans {
|
2014-09-15 17:55:57 +00:00
|
|
|
go func(wp *watch.WatchPlan) {
|
2014-08-21 20:09:13 +00:00
|
|
|
wp.Handler = makeWatchHandler(c.logOutput, wp.Exempt["handler"])
|
|
|
|
wp.LogOutput = c.logOutput
|
2015-01-13 17:50:17 +00:00
|
|
|
if err := wp.Run(httpAddr.String()); err != nil {
|
2014-08-21 20:09:13 +00:00
|
|
|
c.Ui.Error(fmt.Sprintf("Error running watch: %v", err))
|
|
|
|
}
|
2014-09-15 17:55:57 +00:00
|
|
|
}(wp)
|
2014-08-21 20:09:13 +00:00
|
|
|
}
|
|
|
|
|
2014-02-07 20:03:14 +00:00
|
|
|
return newConf
|
2013-12-19 20:18:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Command) Synopsis() string {
|
|
|
|
return "Runs a Consul agent"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Command) Help() string {
|
|
|
|
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
|
|
|
|
|
|
|
Options:
|
|
|
|
|
2014-05-16 17:49:36 +00:00
|
|
|
-advertise=addr Sets the advertise address to use
|
2015-02-06 20:44:55 +00:00
|
|
|
-atlas=org/name Sets the Atlas infrastructure name, enables SCADA.
|
2015-02-05 02:45:08 +00:00
|
|
|
-atlas-join Enables auto-joining the Atlas cluster
|
2015-02-05 01:23:42 +00:00
|
|
|
-atlas-token=token Provides the Atlas API token
|
2014-04-11 22:22:35 +00:00
|
|
|
-bootstrap Sets server to bootstrap mode
|
|
|
|
-bind=0.0.0.0 Sets the bind address for cluster communication
|
2014-07-01 22:02:26 +00:00
|
|
|
-bootstrap-expect=0 Sets server to expect bootstrap mode.
|
2014-04-11 22:22:35 +00:00
|
|
|
-client=127.0.0.1 Sets the address to bind for client access.
|
2014-11-14 19:39:19 +00:00
|
|
|
This includes RPC, DNS, HTTP and HTTPS (if configured)
|
2014-04-11 22:22:35 +00:00
|
|
|
-config-file=foo Path to a JSON file to read configuration from.
|
|
|
|
This can be specified multiple times.
|
|
|
|
-config-dir=foo Path to a directory to read configuration files
|
|
|
|
from. This will read every file ending in ".json"
|
|
|
|
as configuration in this directory in alphabetical
|
2015-05-11 17:19:04 +00:00
|
|
|
order. This can be specified multiple times.
|
2014-04-11 22:22:35 +00:00
|
|
|
-data-dir=path Path to a data directory to store agent state
|
2015-02-23 17:32:09 +00:00
|
|
|
-recursor=1.2.3.4 Address of an upstream DNS server.
|
|
|
|
Can be specified multiple times.
|
2014-04-11 22:22:35 +00:00
|
|
|
-dc=east-aws Datacenter of the agent
|
2014-08-22 22:08:15 +00:00
|
|
|
-encrypt=key Provides the gossip encryption key
|
2014-04-11 23:59:16 +00:00
|
|
|
-join=1.2.3.4 Address of an agent to join at start time.
|
|
|
|
Can be specified multiple times.
|
2014-11-14 15:02:42 +00:00
|
|
|
-join-wan=1.2.3.4 Address of an agent to join -wan at start time.
|
|
|
|
Can be specified multiple times.
|
2014-10-12 19:35:25 +00:00
|
|
|
-retry-join=1.2.3.4 Address of an agent to join at start time with
|
|
|
|
retries enabled. Can be specified multiple times.
|
|
|
|
-retry-interval=30s Time to wait between join attempts.
|
|
|
|
-retry-max=0 Maximum number of join attempts. Defaults to 0, which
|
|
|
|
will retry indefinitely.
|
2014-11-17 22:14:59 +00:00
|
|
|
-retry-join-wan=1.2.3.4 Address of an agent to join -wan at start time with
|
2014-11-14 15:02:42 +00:00
|
|
|
retries enabled. Can be specified multiple times.
|
2014-11-17 22:14:59 +00:00
|
|
|
-retry-interval-wan=30s Time to wait between join -wan attempts.
|
|
|
|
-retry-max-wan=0 Maximum number of join -wan attempts. Defaults to 0, which
|
2014-11-14 15:02:42 +00:00
|
|
|
will retry indefinitely.
|
2014-04-11 22:22:35 +00:00
|
|
|
-log-level=info Log level of the agent.
|
|
|
|
-node=hostname Name of this node. Must be unique in the cluster
|
|
|
|
-protocol=N Sets the protocol version. Defaults to latest.
|
2014-05-21 19:32:24 +00:00
|
|
|
-rejoin Ignores a previous leave and attempts to rejoin the cluster.
|
2014-04-11 22:22:35 +00:00
|
|
|
-server Switches agent to server mode.
|
2014-05-21 19:06:03 +00:00
|
|
|
-syslog Enables logging to syslog
|
2014-04-23 19:37:53 +00:00
|
|
|
-ui-dir=path Path to directory containing the Web UI resources
|
2014-05-06 16:57:53 +00:00
|
|
|
-pid-file=path Path to file to store agent PID
|
2014-04-11 22:22:35 +00:00
|
|
|
|
|
|
|
`
|
2013-12-19 20:18:06 +00:00
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|