From f04b4d16684406ccb17b06c43b01ae1acaea53e3 Mon Sep 17 00:00:00 2001 From: vishalnayak Date: Tue, 26 Feb 2019 10:02:12 -0500 Subject: [PATCH] Change agent's default port number to 8100 --- command/agent/cache/listener.go | 2 +- website/source/docs/agent/caching/index.html.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/command/agent/cache/listener.go b/command/agent/cache/listener.go index c289a6cfb..43e8400f7 100644 --- a/command/agent/cache/listener.go +++ b/command/agent/cache/listener.go @@ -63,7 +63,7 @@ func tcpListener(config map[string]interface{}, _ io.Writer, ui cli.Ui) (net.Lis var addr string addrRaw, ok := config["address"] if !ok { - addr = "127.0.0.1:8300" + addr = "127.0.0.1:8100" } else { addr = addrRaw.(string) } diff --git a/website/source/docs/agent/caching/index.html.md b/website/source/docs/agent/caching/index.html.md index 59b40e86b..b757cdaaf 100644 --- a/website/source/docs/agent/caching/index.html.md +++ b/website/source/docs/agent/caching/index.html.md @@ -152,7 +152,7 @@ cache { } listener "tcp" { - address = "127.0.0.1:8300" + address = "127.0.0.1:8100" tls_disable = true } } @@ -162,4 +162,4 @@ cache { Agent's listener address will be picked up by the CLI through the `VAULT_AGENT_ADDR` environment variable. This should be a complete URL such as -"http://127.0.0.1:8300". +"http://127.0.0.1:8100".