From c14e61c16e03e9076f90689fd5b16eb6db27772e Mon Sep 17 00:00:00 2001 From: Vishal Nayak Date: Tue, 5 Mar 2019 12:57:17 -0500 Subject: [PATCH] Change agent's port to 8007 (#6348) --- 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 43e8400f7b..11c5bf117b 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:8100" + addr = "127.0.0.1:8007" } 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 ef7c42b464..a0b5682eab 100644 --- a/website/source/docs/agent/caching/index.html.md +++ b/website/source/docs/agent/caching/index.html.md @@ -159,7 +159,7 @@ cache { } listener "tcp" { - address = "127.0.0.1:8100" + address = "127.0.0.1:8007" tls_disable = true } } @@ -169,4 +169,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:8100". +"http://127.0.0.1:8007".